-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
68 lines (68 loc) · 2.55 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
64
65
66
67
68
{
"name": "ui-predicate-vue3",
"private": false,
"version": "1.0.1",
"type": "module",
"files": [
"dist"
],
"main": "./dist/ui-predicate-vue3.umd.js",
"module": "./dist/ui-predicate-vue3.es.js",
"exports": {
".": {
"import": "./dist/ui-predicate-vue3.es.js",
"require": "./dist/ui-predicate-vue3.umd.js"
}
},
"scripts": {
"dev": "cross-env VITE_APP=GETTING_STARTED vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:debugger": "node --inspect-brk node_modules/.bin/jest --watch",
"test:watch": "jest --watch --coverage=false",
"test:watch:coverage": "npm run --silent test:watch -- --coverage",
"test:coverage": "true",
"test:image-snapshots": "npm run docs:storybook:build && npm run test:image-snapshots:run",
"test:image-snapshots:run": "jest --projects=./image-snapshots",
"lint": "eslint --fix examples src",
"docs:build": "npm run --silent docs:jsdoc:build && npm run --silent docs:storybook:build && npm run --silent docs:getting-started:build",
"docs:jsdoc:build": "jsdoc -c ../../jsdoc.json",
"docs:storybook:build": "storybook build --output-dir ../../docs/packages/$npm_package_name/$npm_package_version/examples",
"docs:storybook:watch": "storybook dev -p 9001",
"docs:getting-started:build": "cross-env VITE_APP=GETTING_STARTED vite build --empty-out-dir --config=vite.config.js --out-dir=../../../docs/packages/$npm_package_name/$npm_package_version/getting-started",
"docs:getting-started:dev": "cross-env VITE_APP=GETTING_STARTED vite"
},
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com/)",
"license": "MIT",
"dependencies": {
"events": "^3.3.0",
"lodash": "^4.17.21",
"ui-predicate-core": "^0.8.0",
"vue": "^3.4.21"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@storybook/addon-actions": "^8.0.9",
"@storybook/addon-controls": "^8.0.9",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/test": "^8.0.9",
"@storybook/vue3": "^8.0.9",
"@storybook/vue3-vite": "^8.0.9",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/test-utils": "^2.4.5",
"cross-env": "^7.0.3",
"docdash": "^2.0.2",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.23.0",
"jsdoc": "^4.0.2",
"jsdom": "^24.0.0",
"storybook": "^8.0.9",
"vite": "^5.2.8",
"vitest": "^1.4.0"
}
}