-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "solid-nativescript-js",
"version": "0.0.4",
"description": "Zero-overhead SolidJS <-> NativeScript bridge. PascalCase elements mapped 1:1 to @nativescript/core classes — no DOM emulation layer.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js",
"default": "./dist/vite.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"sideEffects": true,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "bun test",
"typecheck": "tsc --noEmit",
"generate:types": "bun scripts/generate-pascal-types.mjs",
"verify": "bun run typecheck && bun test && bun run build",
"prepack": "npm run verify",
"prepublishOnly": "npm run verify"
},
"keywords": [
"NativeScript",
"SolidJS",
"Solid",
"universal",
"renderer",
"native",
"vite"
],
"license": "MIT",
"dependencies": {
"vite-plugin-solid": "^2.11.8"
},
"devDependencies": {
"@nativescript-dom/core-types": "^1.0.32",
"@nativescript-dom/solidjs-types": "^1.0.25",
"@nativescript/core": "~9.0.0",
"@types/bun": "latest",
"solid-js": "^1.9.11",
"typescript": "5.9.3",
"vite": "^8.0.0"
},
"peerDependencies": {
"@nativescript-dom/core-types": "*",
"@nativescript-dom/solidjs-types": "*",
"@nativescript/core": "*",
"solid-js": "^1.9.0",
"vite": "^7.0.0 || ^8.0.0"
}
}