-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "vbss-translator",
"version": "1.0.2",
"private": false,
"type": "module",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/vbss-translator-umd.cjs",
"module": "dist/vbss-translator.js",
"exports": {
".": {
"types": "./dist/vbss-translator.d.ts",
"import": "./dist/vbss-translator.js",
"require": "./dist/vbss-translator-umd.cjs"
}
},
"types": "./dist/vbss-translator.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/vbss-io/vbss-translator.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"patch-deploy": "npm version patch && npm publish",
"minor-deploy": "npm version minor && npm publish",
"major-deploy": "npm version major && npm publish"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
}
}