-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.16 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@windlass/vers-js",
"version": "0.1.2",
"description": "A runtime-agnostic TypeScript library for parsing and validating VErsion Range Specifier (VERS) expressions.",
"keywords": [
"dependencies",
"package",
"parser",
"parsing",
"validation-library",
"validator",
"vers",
"version",
"versioning"
],
"homepage": "https://github.com/windlasstech/vers-js#readme",
"bugs": {
"url": "https://github.com/windlasstech/vers-js/issues"
},
"license": "Apache-2.0",
"author": "Yunseo Kim <yunseokim@windlasstech.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/windlasstech/vers-js.git"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md",
"README.ko.md"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"**/*.mdx\" \"**/*.mdc\"",
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.md\" \"**/*.mdx\" \"**/*.mdc\"",
"lint:ts": "oxlint --no-error-on-unmatched-pattern",
"lint:ts:fix": "oxlint --fix --no-error-on-unmatched-pattern",
"lint:ts:github": "oxlint --no-error-on-unmatched-pattern --format=github",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "vitest run",
"test:pbt": "vitest run tests/property-based.test.ts",
"test:fuzz": "VERS_PBT_MODE=fuzz vitest run tests/property-based.test.ts --testTimeout=30000",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"release:prepare": "node scripts/prepare-release.mjs",
"test:package": "pnpm run build && node tests/runtime-smoke/package-artifacts.mjs",
"typecheck:package": "pnpm run build && tsc -p tests/types/tsconfig.package.json",
"typecheck:package:blocked": "pnpm run build && node tests/runtime-smoke/blocked-subpath-typecheck.mjs",
"smoke:runtime:node": "node tests/runtime-smoke/built-package.mjs",
"smoke:runtime:deno": "deno run tests/runtime-smoke/built-package.mjs",
"smoke:runtime:bun": "bun tests/runtime-smoke/built-package.mjs",
"smoke:package": "pnpm run build && node tests/runtime-smoke/package-name.mjs",
"smoke:runtime": "pnpm run smoke:runtime:node && pnpm run smoke:runtime:deno && pnpm run smoke:runtime:bun",
"verify:package": "pnpm run test:package && pnpm run typecheck:package && pnpm run typecheck:package:blocked && pnpm run smoke:package",
"verify:runtime": "pnpm run build && pnpm run smoke:runtime"
},
"devDependencies": {
"@fast-check/vitest": "^0.4.1",
"@tsconfig/node22": "^22.0.5",
"@vitest/coverage-v8": "^4.1.10",
"fast-check": "^4.9.0",
"lefthook": "^2.1.10",
"markdownlint-cli2": "^0.23.1",
"oxfmt": "^0.62.0",
"oxlint": "^1.75.0",
"oxlint-tsgolint": "^0.25.0",
"typescript": "^7.0.0",
"vitest": "^4.1.10"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.17.0",
"onFail": "download"
}
},
"engines": {
"node": ">=22"
}
}