-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 KB
/
package.json
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
{
"name": "nochoices",
"version": "1.1.4",
"description": "Full featured implementation of options into typescript.",
"repository": {
"type": "git",
"url": "https://github.com/hojarasca/nochoices"
},
"main": "./dist/mod/index.js",
"types": "dist/mod/index.d.ts",
"exports": "./dist/mod/index.js",
"type": "module",
"scripts": {
"test": "mocha",
"build:tsc": "tsc",
"build:esbuild": "node esbuild.js",
"build": "run-p build:tsc build:esbuild",
"prepublish": "run-s test build",
"lint": "eslint .",
"gendocs": "pnpm typedoc --options typedoc.json"
},
"keywords": [
"option",
"optional",
"maybe",
"some",
"none",
"nullable"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"chai": "^4.3.10",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-plugin-tsdoc": "^0.2.17",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"tsx": "^4.7.0",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
}
}