-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "cleave-zen",
"title": "cleave-zen",
"description": "WIP",
"version": "0.0.17",
"author": "Max Huang <risonhuang@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nosir/cleave-zen.git"
},
"homepage": "https://github.com/nosir/cleave-zen",
"files": [
"dist"
],
"source": "src/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/cleave-zen.module.js",
"require": "./dist/cleave-zen.js"
}
},
"main": "./dist/cleave-zen.js",
"module": "./dist/cleave-zen.module.js",
"unpkg": "./dist/cleave-zen.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"docs": "typedoc --out docs ./src && rm ./docs/README.md",
"build": "yarn docs && rm -rf ./dist/ && microbundle",
"dev": "microbundle watch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"microbundle": "^0.15.1",
"prettier": "^3.1.0",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "5.2.2"
}
}