-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"private": false,
"version": "0.37.0",
"name": "@vzn/reactivity",
"description": "The VZN of perfect JS reactivity system",
"author": "Maciej Kwaśniak <contact@exelord.com>",
"license": "MIT",
"repository": "https://github.com/vznjs/reactivity",
"type": "module",
"files": [
"dist/"
],
"source": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/reactivity.js",
"require": "./dist/reactivity.cjs"
}
},
"workspaces": [
"/",
"tests/dummy"
],
"scripts": {
"prepublishOnly": "npm run build",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write .",
"dev": "npm-run-all --parallel 'build:** -- --watch'",
"build": "npm-run-all --parallel build:**",
"build:js": "vite build",
"build:source": "tsc --build",
"release": "release-it",
"bench": "node --allow-natives-syntax bench/bench.cjs"
},
"release-it": {
"git": {
"commitMessage": "v${version}",
"tagAnnotation": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"before:init": [
"npm run lint",
"npm test -- --run"
]
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"disposable-stack": "github:es-shims/DisposableStack",
"@vitest/ui": "^0.33.0",
"c8": "^8.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"npm-run-all": "^4.1.5",
"prettier": "3.0.0",
"release-it": "^16.1.2",
"typescript": "^5.2.0-beta",
"vite": "^4.4.4",
"vitest": "^0.33.0"
}
}