-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.18 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
69
70
71
72
73
74
75
{
"name": "@baleada/vue-features",
"version": "0.14.11",
"description": "User interface features composed from Baleada Composition functions and the Vue 3 Composition API",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js"
}
},
"scripts": {
"tsc": "tsc --project tsconfig.build.json",
"rollup": "rollup --config rollup.config.ts --configPlugin 'typescript={tsconfig: `tsconfig.build.json`}' --bundleConfigAsCjs",
"prepare": "npm run tsc && npm run lint && npm run rollup",
"test:coverage": "bun scripts/test-coverage.ts",
"test:only": "run() { uvu -r esbuild-register tests/$2 $1.test.ts$; }; run",
"test": "npm run test:only .",
"lint": "eslint 'src/**'",
"lint:fix": "eslint --fix 'src/**'",
"dev": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baleada/vue-features.git"
},
"keywords": [
"baleada",
"vue",
"composition function",
"hook",
"user interface",
"features"
],
"author": {
"name": "Alex Vipond",
"email": "[email protected]",
"url": "https://alexvipond.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/baleada/vue-features/issues"
},
"homepage": "https://baleada.dev",
"devDependencies": {
"@alexvipond/mulago": "^0.0.0",
"@baleada/prepare": "^0.5.52",
"@stylistic/eslint-plugin": "^3.0.0",
"@stylistic/eslint-plugin-js": "^3.0.0",
"@stylistic/eslint-plugin-ts": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vue/compiler-sfc": "^3.4.0",
"esbuild": "^0.19.10",
"esbuild-register": "^3.5.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"rollup": "^4.9.1",
"tslib": "^2.6.2",
"typescript": "^5.6.2",
"uvu": "^0.5.6",
"vite": "^5.0.10",
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.27"
},
"sideEffects": false,
"dependencies": {
"@babel/runtime": "^7.23.6",
"@baleada/logic": "^0.24.19",
"@baleada/vue-composition": "^0.11.2",
"lazy-collections": "^0.11.2",
"vue": "^3.5.10"
}
}