forked from farm-fe/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.27 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@farmfe/plugin-icons",
"version": "0.0.8",
"main": "scripts/index.js",
"types": "scripts/index.d.ts",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/farm-fe/plugins",
"author": "CCherry07 <2405693142@qq.com>",
"bugs": {
"url": "https://github.com/farm-fe/plugins/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farm-fe/plugins.git"
},
"keywords": [
"rust",
"icons",
"farmfe"
],
"devDependencies": {
"@farmfe/plugin-tools": "latest"
},
"napi": {
"name": "farmfe_plugin_icons",
"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/astro": {
"types": "./types/astro.d.ts"
},
"./types/preact": {
"types": "./types/preact.d.ts"
},
"./types/qwik": {
"types": "./types/qwik.d.ts"
},
"./types/raw": {
"types": "./types/raw.d.ts"
},
"./types/react": {
"types": "./types/react.d.ts"
},
"./types/solid": {
"types": "./types/solid.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/vue.d.ts"
},
"./types/vue3": {
"types": "./types/vue3.d.ts"
},
"./types/web-components": {
"types": "./types/web-components.d.ts"
}
},
"scripts": {
"dev": "cargo watch -w src -s 'scripts/watch.sh'",
"bump": "npx changeset version",
"play-react": "pnpm --filter playground-react dev",
"play-vue": "pnpm --filter playground-vue dev",
"build": "farm-plugin-tools build --platform --cargo-name farmfe_plugin_icons -p farmfe_plugin_icons --release",
"prepublishOnly": "farm-plugin-tools prepublish"
},
"files": [
"scripts",
"types",
"options.d.ts"
]
}