-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.6 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
62
63
{
"name": "vue-craftcms",
"version": "0.2.0",
"description": "Craft CMS querybuilder for vue",
"private": false,
"main": "./dist/vue-craftcms.umd.cjs",
"module": "./dist/vue-craftcms.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/vue-craftcms.mjs",
"require": "./dist/vue-craftcms.umd.js",
"types": "./dist/main.d.ts"
}
},
"scripts": {
"dev": "cd ./playground && npm run dev",
"build": "vite build",
"test:dev": "vitest",
"test": "vitest run",
"lint": "vue-tsc --emitDeclarationOnly",
"ci": "npm run lint && npm run test && npm run build",
"release": "npm run ci && changeset publish",
"format": "npx prettier . --write",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelreichor/vue-craftcms.git"
},
"keywords": [
"Craft CMS",
"VueJs",
"Vue",
"Content Management System"
],
"author": "Samuel Reichoer",
"license": "MIT",
"bugs": {
"url": "https://github.com/samuelreichor/vue-craftcms/issues"
},
"homepage": "https://github.com/samuelreichor/vue-craftcms#readme",
"dependencies": {
"js-craftcms-api": "0.1.2",
"vue": "^3.4.37"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/node": "22.7.7",
"@vitejs/plugin-vue": "^5.1.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.3",
"vue-tsc": "^2.1.8"
},
"lint-staged": {
"*.{js,vue,ts}": "npm run format"
}
}