-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.97 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
73
74
{
"name": "@ekwoka/rust-ts",
"version": "0.5.0",
"description": "Simple TS implementations of some Rust structures",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"typescript": "./src/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./upgrade": {
"import": "./dist/upgrade/index.js",
"typescript": "./src/upgrade/index.js",
"types": "./dist/upgrade/index.d.ts"
},
"./prelude": {
"import": "./dist/prelude.js",
"typescript": "./src/prelude.js",
"types": "./dist/prelude.d.ts"
}
},
"files": ["dist", "src"],
"type": "module",
"scripts": {
"build": "tsc",
"coverage": "vitest run --coverage",
"docs": "typedoc --out docs --entryPointStrategy expand ./src",
"doctor": "run-s lint test:run build size",
"lint": "run-s lint:*",
"lint:biome": "biome check --write",
"lint:staged": "lint-staged",
"lint:check": "biome check",
"prebuild": "rm -rf dist",
"prepare": "husky",
"size": "node scripts/esbuild.js",
"test": "vitest",
"test:run": "vitest run",
"sandbox": "vite ./sandbox --open --force"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@biomejs/cli-darwin-arm64": "1.9.4",
"@esbuild/darwin-arm64": "0.24.2",
"@rollup/rollup-darwin-arm64": "4.30.1",
"@types/node": "22.10.7",
"@vitest/coverage-v8": "2.1.8",
"esbuild": "0.24.2",
"husky": "9.1.7",
"lint-staged": "15.4.0",
"npm-run-all2": "7.0.2",
"pretty-bytes": "6.1.1",
"typedoc": "0.27.6",
"typescript": "5.7.3",
"vite": "6.0.7",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
},
"lint-staged": {
"**/*.{ts,tsx,mjs,json,js}": "biome check --write"
},
"pnpm": {
"overrides": {
"typescript": "$typescript",
"esbuild": "$esbuild"
}
}
}