-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
37 lines (37 loc) · 1.31 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
{
"name": "@iota/build-scripts",
"private": true,
"author": "IOTA Foundation <[email protected]>",
"description": "Build scripts for @iota packages",
"version": "0.0.0",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"bin": {
"build-package": "./src/build-package.ts",
"build-dapp-kit": "./src/build-dapp-kit.ts"
},
"scripts": {
"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",
"build": "tsc --build"
},
"devDependencies": {
"@types/postcss-prefix-selector": "^1.16.3",
"@vanilla-extract/esbuild-plugin": "^2.3.8",
"autoprefixer": "^10.4.19",
"dotenv": "^16.4.5",
"esbuild": "^0.23.0",
"postcss": "^8.4.31",
"postcss-prefix-selector": "^1.16.1",
"typescript": "^5.5.3"
},
"dependencies": {
"@types/node": "^20.14.10"
}
}