-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.47 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
96
97
98
99
100
101
102
103
{
"name": "unplugin-obj",
"version": "0.1.2",
"description": "Import .obj files as strings 🧵 in Vite, Rollup, Webpack + more",
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"transform",
"three.js",
"svelte-cubed",
"obj",
"obj-loader",
"obj-file"
],
"homepage": "https://github.com/tonyketcham/unplugin-obj#readme",
"bugs": {
"url": "https://github.com/tonyketcham/unplugin-obj/issues"
},
"author": {
"name": "Tony Ketcham",
"email": "ketcham.dev@gmail.com",
"url": "https://github.com/tonyketcham"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonyketcham/unplugin-obj.git"
},
"license": "MIT",
"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"
},
"./*": "./*",
"./obj": {
"types": "./obj.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"files": [
"dist",
"types",
"*.d.ts"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"build:fix": "esno scripts/postbuild.ts",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"play": "npm -C playground run dev",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts"
},
"dependencies": {
"unplugin": "^0.2.7"
},
"devDependencies": {
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"bumpp": "^6.0.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"esno": "^0.9.1",
"fast-glob": "^3.2.7",
"nodemon": "^2.0.12",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"tsup": "^4.14.0",
"typescript": "^4.5",
"vite": "^2.5.3",
"webpack": "^5.51.2"
}
}