-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 2.19 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 2.19 KB
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
{
"name": "immutablestack",
"version": "0.911.0",
"scripts": {
"fetchMD": "curl -s https://raw.githubusercontent.com/macioa/ImmutableStuff/master/intro.md > README.md",
"test": "echo \"Error: no test specified\" && exit 1",
"b_gentemplate": "esbuild immutable_gen_template.ts --bundle --minify --outfile=.build/gentemplate.js --platform=node",
"b_genhandle": "esbuild immutable_gen.ts --bundle --minify --outfile=.build/gen.js --platform=node",
"b_genfile": "esbuild immutable_genfile.ts --bundle --minify --outfile=.build/genfile.js --platform=node",
"b_init": "esbuild immutable_init.ts --bundle --minify --outfile=.build/init_proj.js --platform=node",
"b_links": "esbuild immutable_links.ts --bundle --minify --outfile=.build/links.js --platform=node",
"b_bash": "mkdir -p .build && cp start_macos.sh dev_kit_macos.sh versions.sh gen_toolkit.sh .build/",
"b_settings": "esbuild immutable_settings.ts --minify --bundle --outfile=.build/settings.js --platform=node",
"b_repair": "esbuild immutable_repair.ts --minify --bundle --outfile=.build/repair.js --platform=node",
"b_channel": "esbuild immutable_gen_channel.ts --minify --bundle --outfile=.build/channel.js --platform=node",
"b_start": "esbuild start.ts --minify --bundle --outfile=.build/start.js --platform=node",
"build": "tsc && npm run b_genhandle && npm run b_genfile && npm run b_init && npm run b_bash && npm run b_gentemplate && npm run b_links && npm run b_settings && npm run b_repair && npm run b_channel && npm run b_start",
"zip": "VERSION=\"v0.911.0\"; tar -czvf ImmutableStack-$VERSION.tar.gz -C .build . && mv -f ImmutableStack-$VERSION.tar.gz \"$HBREW_IMM_PATH\"",
"p": "npm run build && npm run zip"
},
"keywords": [],
"author": "macioa",
"license": "Apache-2.0",
"description": "Toolkit for working with the Immutable Stack (elixir/phoenix + react/redux)",
"devDependencies": {
"@types/node": "^22.5.4",
"@types/pluralize": "^0.0.33",
"@types/yargs": "^17.0.33",
"esbuild": "^0.23.1",
"lorem-ipsum": "^2.0.8",
"typescript": "^5.7.2"
},
"dependencies": {
"crypto": "^1.0.1",
"pluralize": "^8.0.0",
"ts-node": "^10.9.2",
"yargs": "^17.7.2"
}
}