-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 1.93 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@farmfe/plugin-react-components",
"version": "1.0.12",
"private": false,
"main": "scripts/index.js",
"types": "scripts/index.d.ts",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/farm-fe/plugins",
"author": "CCherry07 <[email protected]>",
"bugs": {
"url": "https://github.com/farm-fe/plugins/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farm-fe/plugins.git"
},
"keywords": [
"rust",
"react-components",
"farmfe"
],
"napi": {
"name": "farm-plugin-react-components",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl",
"i686-pc-windows-msvc",
"aarch64-pc-windows-msvc"
]
}
},
"exports": {
".": {
"import": "./scripts/func.js",
"types": "./scripts/index.d.ts",
"default": "./scripts/index.js"
},
"./package.json": "./package.json",
"./types/preact": {
"types": "./types/preact.d.ts"
},
"./types/raw": {
"types": "./types/raw.d.ts"
},
"./types/react": {
"types": "./types/react.d.ts"
},
"./types/svelte": {
"types": "./types/svelte.d.ts"
},
"./types/svelte3": {
"types": "./types/svelte3.d.ts"
},
"./types/svelte4": {
"types": "./types/svelte4.d.ts"
},
"./types/vue": {
"types": "./types/vue3.d.ts"
}
},
"scripts": {
"dev": "cargo watch -w src -s 'scripts/watch.sh'",
"bump": "npx changeset version",
"play": "pnpm --filter playground dev",
"build": "farm-plugin-tools build --platform --cargo-name farmfe_plugin_react_components -p farmfe_plugin_react_components --release",
"prepublishOnly": "farm-plugin-tools prepublish"
},
"devDependencies": {
"@farmfe/plugin-tools": "latest"
},
"files": [
"scripts",
"options.d.ts"
]
}