generated from unplugin/unplugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.17 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": "unplugin-object-3d",
"version": "0.2.1",
"description": "Import 3d objects with obj, mtl and textures whilte importing .obj file",
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"transform",
"obj",
"mtl",
"textures"
],
"homepage": "https://github.com/m0ksem/unplugin-object-3d",
"bugs": {
"url": "https://github.com/m0ksem/unplugin-object-3d/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/m0ksem/unplugin-object-3d"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./vite": {
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./rollup": {
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./nuxt": {
"require": "./dist/nuxt.js",
"import": "./dist/nuxt.mjs"
},
"./types": {
"require": "./dist/types.js",
"import": "./dist/types.mjs"
},
"./internal/*": {
"require": "./dist/exports/*.js",
"import": "./dist/exports/*.mjs"
},
"./*": "./*"
},
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"build:fix": "esno scripts/postbuild.ts",
"lint": "eslint .",
"play": "npm -C playground run dev",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"dependencies": {
"unplugin": "^0.6.3"
},
"peerDependencies": {
"three": "*"
},
"devDependencies": {
"@antfu/eslint-config": "^0.23.1",
"@types/node": "^17.0.34",
"bumpp": "^7.1.1",
"eslint": "^8.15.0",
"esno": "^0.16.3",
"fast-glob": "^3.2.11",
"nodemon": "^2.0.16",
"rimraf": "^3.0.2",
"rollup": "^2.74.0",
"tsup": "^5.12.8",
"typescript": "^4.7.4",
"vite": "^2.9.9",
"vitest": "^0.12.6",
"webpack": "^5.72.1"
}
}