forked from reallygoodsoftware/minijs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1004 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
46
47
{
"name": "tonic-minijs",
"version": "1.0.14",
"files": [
"dist"
],
"main": "./dist/mini.umd.js",
"module": "./dist/mini.es.js",
"author": "Jen Villaganas",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"build-watch": "vite build --watch",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"acorn": "^8.11.3",
"acorn-walk": "^8.3.2",
"escodegen": "^2.1.0",
"vite": "^4.4.8"
},
"exports": {
".": {
"import": "./dist/YOUR_LIBRARY_NAME.es.js",
"require": "./dist/YOUR_LIBRARY_NAME.umd.js"
}
},
"auto": {
"plugins": [
"npm",
"all-contributors",
"first-time-contributor",
"released"
]
},
"devDependencies": {
"@auto-it/all-contributors": "^11.1.1",
"@auto-it/first-time-contributor": "^11.1.1",
"all-contributors-cli": "^6.26.1",
"auto": "^11.1.1",
"dedent-js": "^1.0.1",
"jsdom": "^24.0.0",
"vitest": "^1.3.1"
}
}