-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.45 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
{
"type": "module",
"private": true,
"version": "0.0.0",
"main": "dist/index.js",
"files": [
"./dist/*"
],
"exports": {
".": "./dist/index.js",
"./*": [
"./dist/*.js",
"./dist/*"
]
},
"scripts": {
"lint": "eslint \"./**/*.{ts,js}\"",
"test": "npm run build && esbuild test/index.ts --platform=node --format=esm --keep-names --bundle | node --input-type=module | tap-spec",
"build-esm": "esbuild src/*.ts --format=esm --metafile=dist/meta.json --keep-names --tsconfig=tsconfig.build.json --outdir=./dist --sourcemap && tsc --emitDeclarationOnly --project tsconfig.build.json --outDir dist",
"build": "mkdir -p ./dist && rm -rf ./dist/* && npm run build-esm",
"preversion": "npm run lint",
"version": "auto-changelog -p --template keepachangelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"postversion": "git push --follow-tags && npm publish",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@substrate-system/tapzero": "^0.10.5",
"@substrate-system/debug": "^0.7.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"auto-changelog": "^2.4.0",
"esbuild": "^0.25.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"tap-spec": "^5.0.0",
"typescript": "^5.7.2"
},
"license": "MIT",
"author": "nichoth <[email protected]> (https://nichoth.com)"
}