-
Notifications
You must be signed in to change notification settings - Fork 838
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "@nutui/auto-import-resolver",
"version": "1.0.0",
"description": "nutui auto import resolver based on unplugin-vue-components",
"keywords": [
"nutui",
"vue",
"resolver",
"jdf2e"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"package.json"
],
"scripts": {
"clean": "rimraf ./dist",
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
"build": "pnpm clean && vite build && pnpm build:types"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/jdf2e/nutui.git",
"directory": "packages/nutui-auto-import-resolver"
},
"homepage": "https://github.com/jdf2e/nutui/tree/v4/packages/nutui-auto-import-resolver",
"bugs": {
"url": "https://github.com/jdf2e/nutui/issues"
},
"author": "jdf2e",
"license": "MIT",
"devDependencies": {
"rimraf": "^6.0.0",
"typescript": "^5.4.5",
"vite": "^5.3.2"
}
}