-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 971 Bytes
/
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
{
"name": "resource-scope",
"version": "0.0.1",
"type": "module",
"description": "JavaScript resources auto run, collect and dispose",
"keywords": [
"resource",
"scope",
"resource-scope",
"ResourceScope"
],
"repository": {
"type": "git",
"url": "[email protected]:wfk007/resource-scope.git"
},
"license": "MIT",
"author": "wangfukang",
"files": [
"lib"
],
"types": "./lib/index.d.ts",
"main": "./lib/resource-scope.umd.js",
"module": "./lib/resource-scope.es.js",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/resource-scope.es.js"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/resource-scope.umd.js"
}
}
},
"devDependencies": {
"typescript": "^5.0.2",
"vite": "^4.5.1",
"vite-plugin-dts": "^3.6.0"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build"
}
}