-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "bndr-js",
"version": "0.18.1",
"description": "A monadic library for composing and filtering various types of user inputs to generate event handling",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/baku89/bndr-js",
"author": "Baku Hashimoto <[email protected]>",
"sideEffects": false,
"scripts": {
"dev": "concurrently npm:dev:api npm:dev:doc",
"dev:api": "npm run build:api -- --watch",
"dev:doc": "vuepress dev docs",
"build": "tsc && tsc-alias -p tsconfig.json",
"build:api": "typedoc src/index.ts",
"build:doc": "npm run build:api; vuepress build docs",
"lint": "eslint",
"test": "echo \"No test specified\" && exit 0",
"prepare": "npm run build",
"preversion": "npm run test",
"postversion": "git push && git push --tags && npm publish"
},
"homepage": "https://baku89.github.io/bndr-js",
"files": [
"lib"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/lodash-es": "^4.17.12",
"@types/p5": "^1.6.2",
"@types/webmidi": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vuepress/bundler-vite": "2.0.0-rc.2",
"@vuepress/plugin-palette": "^2.0.0-rc.14",
"@vuepress/theme-default": "2.0.0-rc.1",
"@vueuse/core": "^10.11.0",
"concurrently": "^8.2.2",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vue": "^9.21.1",
"monaco-editor": "^0.44.0",
"monaco-editor-vue3": "^0.1.10",
"monaco-themes": "^0.4.4",
"p5": "^1.6.0",
"safer-eval": "^1.3.6",
"stylus": "^0.62.0",
"tsc-alias": "^1.8.11",
"typedoc": "^0.24.7",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.0.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-monaco-editor": "^1.1.0",
"vue": "^3.4.19",
"vue-eslint-parser": "^9.4.2",
"vue-mermaid-string": "^5.0.0",
"vuepress": "2.0.0-rc.1"
},
"dependencies": {
"case": "^1.6.3",
"linearly": "^0.20.3",
"lodash-es": "^4.17.21"
}
}