-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 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
{
"name": "@certible/seb-node",
"type": "module",
"version": "2.0.1",
"description": "TypeScript library for creating Safe Exam Browser (SEB) configuration files and handling Config Keys (server-side and browser)",
"author": "Certible <oberreiter@certible.com>",
"license": "MPL-2.0",
"homepage": "https://github.com/certible/seb-node#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/certible/seb-node.git"
},
"bugs": {
"url": "https://github.com/certible/seb-node/issues"
},
"keywords": [
"seb",
"safe-exam-browser"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./web": {
"types": "./dist/web.d.ts",
"import": "./dist/web.js",
"require": "./dist/web.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup src/index.ts src/web.ts --format cjs,esm --dts",
"test": "vitest",
"test:ci": "vitest --run",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@types/node": "20.19.25",
"zod": "^4.1.12"
},
"devDependencies": {
"@antfu/eslint-config": "6.2.0",
"fast-plist": "0.1.3",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^4.0.1"
}
}