-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "class-action",
"version": "1.0.4",
"description": "A simple library for writing composable functions and methods",
"main": "dist/class-action.js",
"files": [
"dist/*"
],
"type": "module",
"types": "./dist/class-action.d.ts",
"exports": {
".": {
"default": "./dist/class-action.js"
}
},
"scripts": {
"test": "node --test",
"doc": "npx typedoc --plugin typedoc-plugin-markdown --out ./docs/api ./src/*.ts",
"build": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mksunny1/class-action.git"
},
"keywords": [
"class-action",
"JavaScript",
"function",
"method",
"composable",
"meta-programming"
],
"author": "Mark Sun",
"license": "MIT",
"bugs": {
"url": "https://github.com/mksunny1/class-action/issues"
},
"homepage": "https://github.com/mksunny1/class-action#readme",
"devDependencies": {
"typedoc": "^0.26.1",
"typedoc-plugin-markdown": "^4.1.0",
"typescript": "^5.5.2"
}
}