forked from mohsin-r/ramp4-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "ramp-config-editor_editeur-config-pcar",
"version": "3.6.0",
"files": [
"dist"
],
"type": "module",
"private": false,
"main": "./dist/ramp4-editor.umd.cjs",
"module": "./dist/ramp4-editor.js",
"exports": {
".": {
"import": "./dist/ramp4-editor.js",
"require": "./dist/ramp4-editor.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"types": "./dist/types.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --mode lib && npm run generate:types",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"generate:types": "vue-tsc --declaration --emitDeclarationOnly --outdir ./dist"
},
"dependencies": {
"deepmerge": "^4.3.1",
"pinia": "^2.0.32",
"ramp-pcar": "^4.8.0",
"vue": "^3.4.37",
"vue-i18n": "^9.2.2",
"vue-tippy": "^6.2.0",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.14",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "^2.8.4",
"sass": "^1.62.1",
"tailwindcss": "^3.3.2",
"terser": "^5.29.2",
"typescript": "~4.8.4",
"vite": "^5.4.6",
"vite-plugin-static-copy": "^1.0.6",
"vue-tsc": "^1.8.27"
}
}