-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "vulox",
"type": "module",
"version": "0.0.1",
"exports": {
"types": "./dist/vulox.d.ts",
"import": "./dist/vulox.js",
"require": "./dist/vulox.umd.cjs"
},
"main": "./dist/vulox.umd.cjs",
"module": "./dist/vulox.js",
"types": "./dist/vulox.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@babel/core": "^7.26.0",
"@babel/parser": "^7.26.2",
"@babel/plugin-transform-dynamic-import": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-typescript": "^7.25.9",
"@types/babel__core": "^7.20.5",
"@types/hash-sum": "^1.0.2",
"@types/node": "^22.10.1",
"@vue/babel-plugin-jsx": "^1.2.5",
"@vue/compiler-sfc": "^3.5.13",
"eslint": "^9.16.0",
"hash-sum": "^2.0.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vue": "^3.5.13"
}
}