-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.1 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
{
"name": "@wyntine/verifier",
"version": "1.0.0-beta.3",
"description": "Input verification module",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"build": "tsup-node",
"watch": "nodemon -e ts --watch src --exec \"run-s prepack\"",
"prepack": "run-s lint build",
"rebuild": "node ./recreateTest.js"
},
"keywords": [
"verifier"
],
"prettier": "@wyntine/prettier-config",
"author": "Wyntine",
"license": "ISC",
"devDependencies": {
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.14.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@wyntine/prettier-config": "^1.1.1",
"eslint": "^8.57.0",
"nodemon": "^3.1.3",
"npm-run-all": "^4.1.5",
"prettier-eslint": "^16.3.0",
"tar": "^7.2.0",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"bugs": {
"url": "https://github.com/Wyntine/Verifier/issues"
},
"homepage": "https://github.com/Wyntine/Verifier#readme",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
}
}