-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.67 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
{
"name": "flyde-comment-macro",
"version": "0.0.01",
"description": "",
"flyde": {
"exposes": [
"dist/*.flyde.js"
],
"typings": "flyde-typings.d.ts"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Projecet coc.",
"license": "MIT",
"dependencies": {
"@blueprintjs/core": "^5.0.0",
"@blueprintjs/icons": "^5.13.0",
"@blueprintjs/select": "^5.0.20",
"@flyde/core": "^0.105.0",
"@gridsheet/react-core": "1.0.7-alpha.0",
"@types/node": "^20.13.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.3.0",
"html-react-parser": "^5.1.16",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"react-iframe": "^1.8.5"
},
"devDependencies": {
"concurrently": "^7.6.0",
"css-loader": "^6.8.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"dev": "pnpm run watch",
"watch": "concurrently --kill-others \"pnpm run watch:ts\" \"pnpm run macros:watch\"",
"build": "tsc -p tsconfig.build.json && pnpm run macros:bundle",
"b-dev": "bun run b-watch",
"b-watch": "concurrently --kill-others \"bun run watch:ts\" \"bun run macros:watch\"",
"b-build": "tsc -p tsconfig.build.json && bun run macros:bundle",
"macros:bundle": "webpack --config webpack.config.js",
"macros:watch": "webpack --config webpack.config.js --watch",
"watch:ts": "tsc -p . -w --incremental",
"ins-vscexdir": "pnpm ts-node ./test/ins-vscexdir.ts",
"bins-vscexdir": "bun ts-node ./test/ins-vscexdir.ts",
"__publish": "npm version patch && npm publish"
}
}