-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "jsfns",
"version": "0.0.0",
"description": "Simple, no dependency, JS utility functions",
"private": true,
"type": "module",
"scripts": {
"readme": "pnpm validate && pnpm -r readme",
"missing": "pnpm --parallel missing",
"build": "pnpm -r build",
"clean": "pnpm --parallel run clean",
"format": "biome check --write",
"test": "pnpm --parallel test",
"types": "pnpm --parallel typecheck && pnpm typecheck",
"typecheck": "tsgo -p tsconfig.json",
"validate": "pnpm --parallel validate",
"dry-run": "pnpm -r dry-run && pnpm clean",
"changelog": "./bin/changelog.sh",
"versioning": "pnpm changeset version && pnpm changeset tag",
"release": "pnpm -r release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tokimon/jsfns.git"
},
"keywords": [],
"author": "Toke Voltelen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tokimon/jsfns/issues"
},
"homepage": "https://github.com/Tokimon/jsfns#readme",
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@changesets/cli": "^2.30.0",
"@types/node": "^25.6.0",
"@typescript/native-preview": "7.0.0-dev.20260423.1",
"@vitest/coverage-v8": "^4.1.5",
"globals": "^17.5.0",
"tsx": "^4.20.3",
"typedoc": "^0.28.19",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.5"
}
}