-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.01 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
{
"name": "@excss/workspace",
"version": "0.0.0",
"author": "Taishi Naritomi",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"pnpm": "8"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"test": "run-p test:*",
"test:packages": "turbo run test --parallel",
"test:cargo": "cargo test -- --nocapture",
"check": "cross-env CARGO_TARGET_DIR=target_check RUSTFLAGS=\"-D warnings\" run-p check:*",
"check:packages": "turbo run check --parallel",
"check:eslint": "eslint . --ignore-path .check-ignore --max-warnings 0",
"check:prettier": "prettier . --check --ignore-path .check-ignore",
"check:cargo": "cargo check",
"check:cargo-clippy": "cargo clippy",
"check:cargo-fmt": "cargo fmt --check",
"fix": "run-p fix:*",
"fix:eslint": "eslint . --fix --ignore-path .check-ignore",
"fix:prettier": "prettier . --write --ignore-path .check-ignore",
"fix:cargo": "cargo fix --allow-no-vcs",
"fix:cargo-clippy": "cargo clippy --fix --allow-no-vcs",
"fix:cargo-fmt": "cargo fmt",
"clean": "rimraf --glob ./node_modules target target_check ./{packages,playground}/*/{node_modules,dist,.next,.turbo}"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"benny": "^3.7.1",
"cross-env": "^7.0.3",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"publint": "^0.1.16",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"turbo": "^1.10.7",
"typescript": "^5.1.6",
"vitest": "^0.33.0",
"wasm-pack": "^0.12.1"
}
}