-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
49
50
51
52
{
"name": "dom-input-range",
"version": "1.2.0",
"description": "Range-like API for input and textarea contents",
"scripts": {
"prepack": "npm run build",
"build": "tsc",
"format": "prettier . --write",
"lint": "eslint",
"check-formatting": "prettier . --check",
"build-docs": "typedoc src/index.ts --sort static-first --excludePrivate && cp ./screenshot.png docs/screenshot.png",
"build-demos": "npm run -w demos build",
"build-demos-watch": "npm run -w demos build-watch",
"release": "./release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iansan5653/dom-input-range.git"
},
"author": {
"name": "Ian Sanders",
"url": "https://github.com/iansan5653"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/iansan5653/dom-input-range/issues"
},
"homepage": "https://github.com/iansan5653/dom-input-range#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"type": "module",
"exports": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*.d.ts",
"dist/*.js"
],
"workspaces": [
"demos"
]
}