-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.52 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.52 KB
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
76
77
78
79
80
81
{
"name": "apiker",
"version": "1.7.29",
"description": "API for Cloudflare Workers & Wrangler",
"bin": "bin/index.js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest --silent",
"coverage": "npm run test -- --coverage",
"clean": "rimraf dist",
"build": "npm run clean && rollup -c rollup.config.comp.js && rollup -c rollup.config.main.js",
"prepare": "npm run build",
"trypublish": "npm publish || true",
"docs": "typedoc --out docs ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/hodgef/apiker"
},
"author": "Francisco Hodge <[email protected]> (https://github.com/hodgef)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hodgef/apiker/issues"
},
"homepage": "https://github.com/hodgef/apiker",
"keywords": [
"library",
"api",
"cloudflare",
"workers"
],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/plugin-transform-typescript": "^7.16.1",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.18.0",
"cfw-bcrypt": "^1.0.3",
"cfw-crypto": "^1.0.3",
"cookie": "^0.4.2",
"jest": "^27.4.7",
"path-to-regexp": "^6.2.0",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.74.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-prettier": "^2.2.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.4",
"tslib": "^2.3.1",
"typedoc": "^0.25.7",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18"
}
}