-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 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
{
"name": "@yocdev/loom",
"version": "1.2.1",
"description": "",
"bin": {
"loom": "dist/index.cjs.js"
},
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"pkg:publish": "rm -rf ./dist && npm run build && renew-it",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-run": "^2.1.0",
"@rollup/plugin-typescript": "^8.3.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.180",
"@types/sharp": "^0.30.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.0",
"renew-it": "^1.5.2",
"rollup": "^2.70.1",
"tslib": "^2.6.2",
"typescript": "^4.6.2"
},
"dependencies": {
"@svgr/core": "^6.2.1",
"await-to-js": "^3.0.0",
"case": "^1.6.3",
"fast-glob": "^3.2.11",
"fs-extra": "^10.0.1",
"lodash": "^4.17.21",
"modern-async": "^1.1.2",
"sharp": "^0.30.3",
"ts-morph": "^14.0.0"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"prettier": ">=2.0.0",
"typescript": ">=4.0.0"
}
}