-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 KB
/
package.json
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
{
"name": "deepsignal",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"test-core": "npm run test --workspace=@deepsignal/core",
"test-preact": "npm run test --workspace=@deepsignal/preact",
"test-react": "npm run test --workspace=@deepsignal/react",
"publish-all": "npx tsx ./scripts/publish-all.ts",
"version-bump": "npx tsx ./scripts/version-bump.ts"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/format": "^17.0.0",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"concurrently": "^7.4.0",
"conventional-changelog-atom": "^2.0.8",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.6.2",
"semver": "^7.6.0",
"tsx": "^4.7.0",
"typescript": "~4.8.2",
"zx": "^7.2.3"
},
"lint-staged": {
"./**/*.{ts,tsx}": "npx eslint"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": "18.x.x",
"npm": "9.x.x"
},
"engineStrict": true,
"homepage": "https://github.com/EthanStandel/deepsignal#readme",
"repository": "https://github.com/EthanStandel/deepsignal"
}