-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 925 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 925 Bytes
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
{
"name": "@vvel0x/authz",
"version": "1.0.1",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.js",
"scripts": {
"build": "tsup src/index.ts",
"start": "tsup src/index.ts --watch",
"test": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"files": [
"dist"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jest/globals": "^29.6.0",
"@types/eslint": "^8.40.2",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"jest": "^29.6.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}