-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.73 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
{
"name": "@baleada/vue-prose",
"version": "0.15.3",
"description": "Vue components that enhance prose for the Baleada toolkit",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js"
}
},
"scripts": {
"tsc:includeTests": "node -r esbuild-register scripts/includeTestsInTsconfig.ts",
"tsc:excludeTests": "node -r esbuild-register scripts/excludeTestsFromTsconfig.ts",
"prepare": "npm run tsc:excludeTests && tsc && rollup --config rollup.config.ts --configPlugin typescript --bundleConfigAsCjs && npm run tsc:includeTests",
"test:only": "run() { npx uvu -r esbuild-register tests/$2 $1.test.js$; }; run",
"test": "npm run test:only .",
"dev": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baleada/vue-prose.git"
},
"keywords": [
"baleada",
"prose",
"markdown",
"components",
"accessible",
"vue"
],
"author": "Alex Vipond",
"license": "MIT",
"bugs": {
"url": "https://github.com/baleada/vue-prose/issues"
},
"homepage": "https://baleada.netlify.com",
"sideEffects": false,
"devDependencies": {
"@baleada/prepare": "^0.5.29",
"@primer/octicons": "^17.9.0",
"@vue/compiler-sfc": "^3.2.45",
"esbuild": "^0.15.15",
"esbuild-register": "^3.4.1",
"rollup": "^3.4.0",
"simple-icons": "^7.20.0",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"uvu": "^0.5.6",
"vite": "^3.2.4"
},
"dependencies": {
"@babel/runtime": "^7.20.1",
"@baleada/logic": "^0.22.3",
"@baleada/vue-composition": "^0.10.11",
"@baleada/vue-features": "^0.13.12",
"pinia": "^2.0.26",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
}
}