-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.86 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
{
"name": "@kagal/json-template",
"version": "0.1.3",
"type": "module",
"description": "JSON template engine with shell-style ${var:-default} variable substitution",
"license": "MIT",
"homepage": "https://github.com/kagal-dev/json-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kagal-dev/json-template.git"
},
"bugs": "https://github.com/kagal-dev/json-template/issues",
"keywords": [
"json",
"json-template",
"template-engine",
"typescript",
"variable-substitution"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"clean": "rimraf dist node_modules",
"dev": "vitest",
"dev:prepare": "unbuild --stub",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"precommit": "run-s build lint typecheck test",
"prepack": "eslint --fix package.json && run-s build lint:check typecheck test publint",
"prepare": "cross-test -s dist/index.mjs || unbuild --stub",
"publint": "publint",
"test": "vitest run",
"test:compat": "node src/__tests__/compat.mjs",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@kagal/cross-test": "^0.1.2",
"@poupe/eslint-config": "^0.8.4",
"@types/node": "^20.19.37",
"eslint": "^9.39.4",
"npm-run-all2": "^8.0.4",
"pkg-pr-new": "^0.0.65",
"publint": "^0.3.18",
"rimraf": "^6.1.3",
"typescript": "~5.9.3",
"unbuild": "3.6.1",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"publishConfig": {
"access": "public",
"provenance": true
}
}