• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "name": "ArkTS2.0_build_system",
3  "version": "1.0.0",
4  "description": "Compile ArkTS 2.0 source code into bytecode, encompassing UI transformations.",
5  "private": true,
6  "main": "dist/index.js",
7  "scripts": {
8    "clean": "rimraf dist",
9    "build": "npm run clean && tsc",
10    "build_debug": "npm run clean && tsc --sourceMap",
11
12    "mixed_hap:gen_decl": "npm run build && node ./dist/entry.js test/demo_mix_hap/build_config_decl.json",
13    "mixed_hap:gen_abc": "node ./dist/entry.js test/demo_mix_hap/build_config.json",
14    "mixed_hap:run": "npm run mixed_hap:gen_decl && npm run mixed_hap:gen_abc",
15
16    "demo_hap:gen_abc": "npm run build && node ./dist/entry.js test/demo_hap/build_config.json"
17  },
18  "devDependencies": {
19    "typescript": "^5.0.0",
20    "@types/node": "22.10.7",
21    "@tsconfig/recommended": "1.0.8",
22    "rimraf": "6.0.1"
23  },
24  "dependencies": {
25
26  }
27}
28