-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "sveld",
"version": "0.21.0",
"license": "Apache-2.0",
"description": "Generate TypeScript definitions for your Svelte components.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "bun test",
"test:fixtures-types": "bun --bun tsc --project tsconfig.fixtures.json",
"test:e2e": "bun tests/test-e2e.ts",
"format": "bun --bun prettier --write \".\" --cache",
"build": "bun --bun tsc"
},
"dependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"acorn": "^8.12.1",
"comment-parser": "^1.4.1",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-svelte": "^7.2.2",
"svelte": "^4.2.19",
"svelte-preprocess": "^6.0.2",
"tinyglobby": "^0.2.6",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/bun": "^1.1.12",
"@types/jest": "^29.5.13",
"@types/prettier": "^2.7.3",
"prettier-plugin-svelte": "^2.10.1"
},
"bin": {
"sveld": "cli.js"
},
"files": [
"lib",
"cli.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/carbon-design-system/sveld.git"
},
"homepage": "https://github.com/carbon-design-system/sveld",
"bugs": "https://github.com/carbon-design-system/sveld/issues",
"keywords": [
"svelte",
"svelte component",
"documentation",
"docgen",
"typescript",
"definitions",
"JSDocs"
],
"prettier": {
"printWidth": 120
},
"maintainers": [
"Eric Liu (https://github.com/metonym)"
]
}