-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"private": true,
"name": "privacypass-origin",
"version": "0.1.0",
"type": "module",
"description": "A test Privacy Pass origin",
"main": "dist/worker.js",
"author": "Chris Wood <chriswood@cloudflare.com>",
"contributors": [
"Armando Faz <armfazh@cloudflare.com>",
"Cefan Rubin <cefan@cloudflare.com>",
"Chris Wood <chriswood@cloudflare.com>",
"Thibault Meunier <thibault@cloudflare.com>"
],
"license": "Apache-2.0",
"homepage": "https://github.com/cloudflare/privacypass-origin#readme",
"repository": "github:cloudflare/privacypass-origin",
"scripts": {
"build": "tsc && node scripts/cli.js build",
"deploy:production": "wrangler publish --no-bundle --env production",
"dev": "wrangler dev --env production",
"format": "prettier --write '*.{json,js}' 'scripts/*.{js,ts}' 'src/**/*.{js,ts}'",
"lint": "eslint src && prettier --check '*.{json,js}' 'scripts/*.{js,ts}' 'src/**/*.{js,ts}'"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230904.0",
"dotenv": "16.3.1",
"esbuild": "0.27.0",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-typescript": "^3.0.0",
"git-rev-sync": "^3.0.2",
"prettier": "3.0.3",
"sade": "^1.8.1",
"wrangler": "4.75.0"
},
"dependencies": {
"@cloudflare/privacypass-ts": "^0.4.0",
"@sentry/cli": "^2.20.6",
"typescript": "^5.2.2"
}
}