forked from coinbase/build-onchain-apps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@coinbase/build-onchain-apps",
"version": "0.25.0",
"repository": "https://github.com/coinbase/build-onchain-apps.git",
"license": "Apache-2.0",
"dependencies": {
"@clack/prompts": "^0.7.0",
"commander": "^11.1.0",
"figlet": "^1.7.0",
"picocolors": "^1.0.0",
"rimraf": "^5.0.5",
"tslib": "^2.3.0"
},
"scripts": {
"build": "nx build",
"format": "nx format",
"format:check": "nx format:check",
"lint": "nx lint",
"release:check": "changeset status --verbose --since=origin/main",
"release:publish": "yarn install && yarn build && changeset publish",
"release:version": "changeset version && yarn install --immutable"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@nx/eslint": "17.1.2",
"@nx/eslint-plugin": "17.1.2",
"@nx/js": "^17.2.0",
"@nx/workspace": "17.1.2",
"@swc-node/register": "~1.6.7",
"@swc/core": "~1.3.85",
"@types/inquirer": "^8.2.5",
"@types/node": "18.7.1",
"@types/tar": "4.0.3",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "~8.46.0",
"eslint-config-prettier": "^9.0.0",
"nx": "^17.1.2",
"prettier": "^2.6.2",
"typescript": "~5.3.3"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src/",
"dist/"
],
"nx": {
"includedScripts": []
},
"type": "commonjs",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"bin": "./dist/src/index.js",
"packageManager": "[email protected]"
}