-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 904 Bytes
/
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
{
"name": "scriptable-jsx",
"version": "1.0.2",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "[email protected]:maoqxxmm/scriptable-jsx.git",
"author": "maoqxm <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production && tsc --emitDeclarationOnly ",
"demo": "webpack --config demo/webpack.config.js",
"prepublishOnly": "npm run build"
},
"sideEffects": [
"**/*.js",
"**/*.ts"
],
"files": [
"dist/*.js",
"dist/**/*.d.ts",
"jsx-runtime.js"
],
"devDependencies": {
"@babel/preset-typescript": "^7.17.12",
"@types/scriptable-ios": "^1.6.5",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"babel-loader": "^8.2.5"
}
}