-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.51 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.51 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
76
{
"name": "knighted-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/css",
"packages/playwright"
],
"engines": {
"node": ">= 22.21.1",
"npm": ">= 10.9.0"
},
"engineStrict": true,
"scripts": {
"build": "npm run build -w @knighted/css",
"prepare": "husky",
"test": "npm run test -w @knighted/css",
"pretest": "npm run build",
"test:e2e": "npm run test -w @knighted/css-playwright-fixture",
"pretest:e2e": "npm run build",
"lint": "oxlint packages",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"check:cycles": "madge packages/css/src --ts-config packages/css/tsconfig.json --extensions ts,tsx,js,jsx,mjs,cjs --circular && madge packages/playwright/src --ts-config packages/playwright/tsconfig.json --extensions ts,tsx,js,jsx,mjs,cjs --circular",
"preview:e2e": "npm run preview -w @knighted/css-playwright-fixture",
"check-types": "npm run check-types -w @knighted/css && npm run check-types -w @knighted/css-playwright-fixture",
"clean:deps": "find . -name node_modules -type d -prune -exec rm -rf {} +",
"clean:dist": "find . -name dist -type d -prune -exec rm -rf {} +",
"clean": "npm run clean:deps && npm run clean:dist"
},
"devDependencies": {
"@emnapi/core": "^1.2.0",
"@emnapi/runtime": "^1.2.0",
"@knighted/duel": "^4.0.0",
"@napi-rs/wasm-runtime": "^1.0.7",
"@playwright/test": "^1.48.2",
"@rspack/cli": "^1.0.0",
"@rspack/core": "^1.0.0",
"@types/less": "^3.0.8",
"@types/webpack": "^5.28.5",
"@vanilla-extract/css": "^1.15.2",
"@vanilla-extract/integration": "^8.0.6",
"@vanilla-extract/recipes": "^0.5.7",
"@vanilla-extract/sprinkles": "^1.6.5",
"c8": "^10.1.2",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"less": "^4.2.0",
"lint-staged": "^16.2.7",
"madge": "^8.0.0",
"oxlint": "^1.39.0",
"prettier": "^3.7.4",
"sass": "^1.80.7",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
},
"overrides": {
"module-lookup-amd": {
"glob": "^9.0.0"
}
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 90,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"{packages/css/src,packages/playwright/src}/**/*.{ts,tsx,js,jsx,mjs,cjs}": "npm run check:cycles",
"*.{js,jsx,ts,tsx,mjs,cjs,cts,mts}": "oxlint",
"*.{js,jsx,ts,tsx,mjs,cjs,cts,mts,json,md,css,scss,html}": "prettier --check"
},
"optionalDependencies": {
"@oxc-parser/binding-wasm32-wasi": "^0.105.0"
}
}