-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.58 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.58 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
{
"name": "@iota/create-dapp",
"author": "IOTA Foundation <info@iota.org>",
"description": "A CLI for creating new IOTA dApps",
"homepage": "https://docs.iota.org/ts-sdk/typescript/",
"repository": "https://github.com/iotaledger/ts-packages",
"version": "0.5.0",
"license": "Apache-2.0",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist",
"src",
"templates"
],
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"scripts": {
"clean": "rm -rf tsconfig.tsbuildinfo ./dist",
"build": "tsc --build",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix"
},
"bugs": {
"url": "https://github.com/iotaledger/ts-packages/issues/new"
},
"devDependencies": {
"@iota/build-scripts": "workspace:*",
"typescript": "^5.5.3"
},
"dependencies": {
"@iota/dapp-kit": "workspace:*",
"@iota/iota-sdk": "workspace:*",
"@types/node": "^24.0.0",
"enquirer": "^2.4.1"
},
"sideEffects": false,
"bin": "./bin/index.js"
}