-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.49 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
77
{
"name": "@view-ignored/create",
"version": "0.1.0",
"description": "CLI generator to create public view-ignored target plugin packages.",
"keywords": [
"create",
"generator",
"target",
"view-ignored"
],
"bugs": {
"url": "https://github.com/view-ignored/create/issues"
},
"license": "MIT",
"author": "Mopsgamer",
"repository": {
"type": "git",
"url": "git+https://github.com/view-ignored/create.git"
},
"bin": {
"vign-create": "./out/index.js"
},
"directories": {
"lib": "out"
},
"files": [
"/out"
],
"type": "module",
"exports": {
".": {
"types": "./out/index.d.ts",
"default": "./out/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prerelease": "bun check && bun run test && bun run prod && bun run lint && bun run fmt --check && bun run ts-compat && bun run node-compat && bun publint --pack npm --strict",
"check": "bun tsc -p src --noEmit",
"dev": "bun tsc -p src",
"prod": "rm -rf out && bun tsc -p src/tsconfig.prod.json --emitDeclarationOnly && bun tsc -p src/tsconfig.prod.json --removeComments -d false && oxfmt ./out/**/*.js ./out/**/*.d.ts",
"lint": "bun run oxlint --type-aware",
"fmt": "bun run oxfmt",
"test": "bun test --timeout 5000 src",
"publint": "publint",
"node-compat": "bun run node-compat-22 && bun run node-compat-24",
"ts-compat": "bun run ts-compat-6 && bun run ts-compat-5",
"node-compat-24": "node node_modules/typescript6/bin/tsc -p src/tsconfig.prod24.json --noEmit",
"node-compat-22": "node node_modules/typescript6/bin/tsc -p src/tsconfig.prod22.json --noEmit",
"ts-compat-5": "node node_modules/typescript5/bin/tsc -p src/tsconfig.prod.json --noEmit --resolveJsonModule",
"ts-compat-6": "node node_modules/typescript6/bin/tsc -p src/tsconfig.prod.json --noEmit",
"release:major": "bun run --bun release-it --increment=major",
"release:minor": "bun run --bun release-it --increment=minor",
"release:patch": "bun run --bun release-it --increment=patch"
},
"devDependencies": {
"@release-it/keep-a-changelog": "latest",
"@types/bun": "latest",
"@types/node": "npm:@types/node@latest",
"@types/node-22": "npm:@types/node@^22.20.1",
"@types/node-24": "npm:@types/node@^24.13.3",
"bun-types": "latest",
"oxfmt": "latest",
"oxlint": "latest",
"oxlint-tsgolint": "latest",
"publint": "latest",
"release-it": "latest",
"typescript": "npm:typescript@^7.0.2",
"typescript5": "npm:typescript@~5.7.3",
"typescript6": "npm:typescript@^6.0.3"
},
"engines": {
"node": ">=22"
}
}