-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "zemit-sdk",
"author": "Julien Turbide",
"license": "ISC",
"description": "Zemit CMS - SDK",
"private": false,
"version": "1.0.0",
"type": "module",
"files": [
"dist"
],
"main": "dist/zemit.umd.js",
"module": "dist/zemit.es.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build && yarn build:types",
"build:types": "vue-tsc --project tsconfig.types.json",
"build:publish:push:private": "yarn build && yarn publish:push:private",
"publish:push:private": "yalc publish --push --private --sig",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.7.9",
"camelcase": "^8.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"ip-address": "^10.0.1",
"jose": "^5.9.6",
"moment": "^2.30.1",
"reflect-metadata": "^0.2.2",
"store2": "^2.14.3",
"uuid": "^11.0.3",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
},
"devDependencies": {
"@babel/types": "^7.26.3",
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "^5.7.2",
"vite": "^6.0.6"
}
}