-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
{
"name": "esbuild-plugin-velcro",
"version": "0.1.1",
"description": "This esbuild plugin uses Velcro to build projects without having to npm install dependencies",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"browser": {},
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js",
"default": "./dist/index.cjs.js"
},
"./package.json": "./package.json",
"./": "./"
},
"files": [
"dist/**/!(tsconfig.tsbuildinfo)"
],
"dependencies": {
"@velcro/common": "^0.56.2",
"@velcro/resolver": "^0.56.2",
"@velcro/strategy-cdn": "^0.56.2",
"@velcro/strategy-compound": "^0.56.2",
"@velcro/strategy-fs": "^0.56.2",
"got": "^11.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^12.19.11",
"@wessberg/rollup-plugin-ts": "^1.3.5",
"esbuild": "^0.8.27",
"jest": "^26.5.0",
"prettier": "^2.2.1",
"rollup": "^2.30.0",
"ts-jest": "^26.0.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"esbuild": "^0.8.27"
},
"scripts": {
"build": "rm -rf dist && rollup -c rollup.config.js",
"lint": "prettier --check src/**/*",
"prepack": "npm run build",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ggoodman/typescript-library-template.git"
},
"keywords": [],
"author": "Geoffrey Goodman",
"license": "MIT",
"bugs": {
"url": "https://github.com/ggoodman/typescript-library-template/issues"
},
"homepage": "https://github.com/ggoodman/typescript-library-template#readme",
"engines": {
"node": ">=10.16.0"
},
"prettier": {
"arrowParens": "always",
"printWidth": 100,
"singleQuote": true
}
}