-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.06 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
{
"name": "@jag-k/scriptable-jsx",
"description": "Create a Scriptable bundle from JSX",
"license": "SEE LICENSE IN LICENSE",
"version": "1.1.3",
"author": {
"email": "[email protected]",
"name": "Jag_k",
"url": "https://github.com/jag-k"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/jag-k/scriptable-jsx.git"
},
"bugs": {
"url": "https://github.com/jag-k/scriptable-jsx/issues"
},
"type": "module",
"main": "dist/index.js",
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"build": "rollup -c",
"watch": "npm run prebuild && rollup -cw",
"prebuild": "rm -rf dist"
},
"files": [
"dist",
"types/*",
"README.md",
"LICENSE"
],
"keywords": [
"scriptable",
"scriptable-ios",
"scriptable-app",
"jsx"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.4",
"rollup": "^2.78.0",
"tslib": "^2.4.0"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@types/scriptable-ios": "^1.7.0"
}
}