-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.77 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.77 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
{
"name": "@authcube/pst",
"version": "1.1.6",
"author": "m4n3dw0lf <angelo.moura@sec4you.com.br>",
"maintainers": [
"aechiara <aechiara@gmail.com>"
],
"contributors": [
"aechiara <aechiara@gmail.com>",
"chulao <juliano.lao@sec4you.com.br>",
"brfso <fernando.oliveira@sec4you.com.br>",
"isabelcurado <curado@google.com>",
"aykutblt <aykutblt@gmail.com>"
],
"description": "Typescript library implementing Private State Token API (https://wicg.github.io/trust-token-api/)",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"!dist/**/*.tsbuildinfo"
],
"homepage": "https://github.com/authcube/pst",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/authcube/pst.git"
},
"engines": {
"node": ">=20.0.0 <=22.x"
},
"scripts": {
"example": "tsc -b example; node ./lib/example/index.js",
"build_tsc": "tsc -b",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:esm",
"clean": "rm -rf ./dist",
"test": "tsx ./src/test/pst.test.ts"
},
"type": "module",
"keywords": [
"private-state-tokens",
"voprf",
"crypto",
"cryptography",
"trust-tokens"
],
"dependencies": {
"@cloudflare/privacypass-ts": "^0.4.0",
"@cloudflare/voprf-ts": "^1.0.0",
"cors": "^2.8.5",
"ejs": "^3.1.9",
"express": "5.0.0",
"structured-field-values": "^2.0.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.17.23",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.3.3"
}
}