This repository was archived by the owner on Jun 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "hyperlight",
"private": true,
"workspaces": [
"packages/**",
"examples/**"
],
"engines": {
"node": ">=12.4"
},
"repository": {
"type": "git",
"url": "https://github.com/BRA1L0R/hyperlight"
},
"scripts": {
"prerelease": "pnpm lint && pnpm build && pnpm test",
"chgset:run": "changeset",
"chgset:version": "changeset version",
"rm-changelogs": "rm -rf packages/*/CHANGELOG.md",
"chgset": "pnpm chgset:run && pnpm chgset:version && pnpm rm-changelogs",
"release": "changeset publish",
"test": "echo no tests yet",
"lint": "eslint . --ext=js,mjs,ts,cjs",
"format": "prettier --check \"./**/*.{ts,js,mjs,cjs,json}\"",
"format:write": "prettier --check \"./**/*.{ts,js,mjs,cjs,json}\" -w",
"build": "pnpm -r build"
},
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-typescript": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"prettier": "^2.3.0",
"rollup": "^2.49.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "pnpm format && pnpm lint && pnpm build",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"hyperapp": "2.0.18"
}
}