-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.55 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.55 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
47
{
"name": "scriptable",
"version": "1.0.0",
"description": "Scriptable Development Environment for VSCode",
"scripts": {
"init": "./scripts/scriptable.sh init",
"export": "./scripts/scriptable.sh export",
"export_module": "./scripts/scriptable.sh export_module",
"build": "./scripts/build.sh build",
"build-watch": "./scripts/build.sh build_and_watch",
"open": "./scripts/build.sh open_in_scriptable",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext .ts ./src",
"lint:fix": "pnpm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elliott-Liu/scriptable.git"
},
"author": "Elliott Liu",
"license": "ISC",
"bugs": {
"url": "https://github.com/Elliott-Liu/scriptable/issues"
},
"homepage": "https://github.com/Elliott-Liu/scriptable#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^18.19.26",
"@types/scriptable-ios": "^1.7.7",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"rollup": "^3.29.4",
"rollup-plugin-eslint": "^7.0.0",
"scriptable-utils": "^2.1.6",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
},
"packageManager": "pnpm@8.15.5+sha256.4b4efa12490e5055d59b9b9fc9438b7d581a6b7af3b5675eb5c5f447cee1a589"
}