generated from 0x-jerry/tpl-ts-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
42
43
44
45
{
"name": "@0x-jerry/silver",
"version": "1.1.1",
"description": "Let writing CLI like writing document.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"author": "0x-jerry <[email protected]>",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"engines": {
"node": ">= 18"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"g:ohm": "ohm generateBundles --withTypes --esm src/**/*.ohm",
"test:coverage": "vitest run --coverage",
"build": "tsup src/index.ts --format esm --dts --clean",
"prepublishOnly": "npm run build",
"release": "x-release"
},
"devDependencies": {
"@0x-jerry/x-release": "^2.2.2",
"@ohm-js/cli": "^2.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.5.5",
"@vitest/coverage-v8": "^2.1.1",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"dependencies": {
"@0x-jerry/utils": "^3.0.0",
"minimist": "^1.2.8",
"ohm-js": "^17.1.0",
"picocolors": "^1.1.0"
}
}