-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.39 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "dourajs",
"version": "0.2.2",
"private": true,
"description": "The root package for doura",
"keywords": ["doura", "state management", "javascript", "typescript"],
"license": "MIT",
"packageManager": "pnpm@9.15.9",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "node scripts/build.js",
"benchmark": "pnpm build doura --types && ts-node benchmark/reactivity.ts",
"benchmark:suite": "pnpm build doura --types && NODE_ENV=production ts-node benchmark/suite/index.ts",
"clean": "pnpm -r --parallel exec rm -rf node_modules dist && pnpm exec rm -rf node_modules",
"lint": "biome lint --error-on-warnings --diagnostic-level=warn",
"format": "biome format --write .",
"test": "run-s \"test-unit {@}\" \"test-dts {@}\"",
"test-unit": "jest",
"test-dts": "tsc -p ./test-dts/tsconfig.json",
"release": "node scripts/release.js",
"prepare": "husky install",
"doc": "pnpm --filter \"doura-docs\" run start",
"doc:build": "pnpm --filter \"doura-docs\" run build"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/types": "17.4.4",
"@microsoft/api-extractor": "7.58.7",
"@rollup/plugin-commonjs": "23.0.2",
"@rollup/plugin-json": "5.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.1",
"@rollup/plugin-terser": "0.1.0",
"@biomejs/biome": "2.4.15",
"@types/jest": "^29.5.14",
"@types/node": "^13.11.0",
"benchmark": "2.1.4",
"brotli": "1.3.3",
"chalk": "^4.1.0",
"dts-cli": "^1.6.0",
"enquirer": "^2.3.6",
"execa": "^4.0.2",
"fs-extra": "10.1.0",
"husky": "^7.0.2",
"immer": "^11.1.4",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"json2csv": "6.0.0-alpha.2",
"lint-staged": "^11.1.2",
"minimist": "^1.2.7",
"mutative": "^1.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "3.4.0",
"rollup-plugin-typescript2": "0.34.1",
"semver": "^7.3.8",
"ts-jest": "29.4.5",
"ts-node": "10.9.1",
"tslib": "^2.3.1",
"typescript": "^5.4.5"
},
"pnpm": {
"overrides": {
"picomatch": "2.3.1",
"webpack": "5.75.0"
}
},
"resolutions": {
"jest-environment-jsdom": "29.7.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,html}": "biome check --write --no-errors-on-unmatched"
}
}