-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "svelte-native",
"version": "1.0.29",
"description": "Svelte integration for NativeScript",
"sideEffects": false,
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/halfnelson/svelte-native.git"
},
"homepage": "https://github.com/halfnelson/svelte-native",
"keywords": [
"nativescript",
"svelte"
],
"scripts": {
"release": "standard-version",
"clean": "npx rimraf ./dist/*",
"build": "npm run clean && rollup -c && node ./scripts/create-pkg.js",
"watch": "rollup -cw",
"deploy": "npm run build && cd dist && npm publish",
"deploy-beta": "npm run build && cd dist && npm publish --tag beta"
},
"author": "David Pershouse",
"license": "MIT",
"peerDependencies": {
"@nativescript/core": "^8.5.9",
"svelte": "^4.2.8"
},
"devDependencies": {
"@nativescript/core": "8.8.0-alpha.2",
"@nativescript/types": "~8.7.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "~11.1.6",
"@types/node": "20.14.9",
"glob": "^10.3.10",
"rimraf": "^2.7.1",
"rollup": "~4.18.0",
"rollup-plugin-svelte": "^7.2.2",
"standard-version": "9.5.0",
"svelte": "~4.2.18",
"tslib": "2.6.3",
"typescript": "^5.5.2"
}
}