-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1 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
{
"name": "scriptable",
"version": "1.0.0",
"description": "testing",
"main": "index.js",
"scripts": {
"build": "source ./build.sh; build",
"prebuild": "npm run lint",
"lint": "npm run prettier && eslint \"*.ts\" \"src/**/*.ts\" --fix",
"watch": "source ./build.sh; build_and_watch",
"prettier": "prettier --log-level warn --write \"*.ts\" \"src/**/*.ts\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-json": "^6.1.0",
"@types/node": "^22.10.6",
"@types/scriptable-ios": "^1.7.7",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"rollup": "^4.30.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
}
}