@deepexi/datasense-cli 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +78 -0
  2. package/dist/ontos.js +2 -0
  3. package/package.json +44 -0
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@deepexi/datasense-cli",
3
+ "version": "1.8.1",
4
+ "module": "src/index.ts",
5
+ "type": "module",
6
+ "private": false,
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "bin": {
11
+ "ontos": "dist/ontos.js"
12
+ },
13
+ "files": [
14
+ "dist/ontos.js"
15
+ ],
16
+ "scripts": {
17
+ "build": "bun build src/index.ts --target node --outfile dist/ontos.js && ./node_modules/.bin/javascript-obfuscator dist/ontos.js --output dist/ontos.js --compact true --string-array true --string-array-rotate true --string-array-shuffle true --string-array-encoding base64 && chmod +x dist/ontos.js",
18
+ "dev": "bun run src/index.ts",
19
+ "prepublishOnly": "rm -rf dist && bun run build && echo 'Use: bun publish --access public'",
20
+ "install:local": "rm -rf dist && bun run build && npm i -g .",
21
+ "test": "XDG_CONFIG_HOME=\"${TMPDIR:-/tmp}/ontos-cli-test-config-$$\" bun run test:unit && XDG_CONFIG_HOME=\"${TMPDIR:-/tmp}/ontos-cli-test-config-$$\" bun run test:mock-e2e",
22
+ "test:unit": "bun test test/unit",
23
+ "test:mock-e2e": "bun test test/mock-e2e/command test/mock-e2e/flow/command-regression.test.ts",
24
+ "test:coverage": "bun test --coverage test/unit test/mock-e2e/command test/mock-e2e/flow/command-regression.test.ts",
25
+ "test:artifacts": "bun run build && bun test test/mock-e2e/flow/build-artifacts.test.ts",
26
+ "test:live:prepare": "bun run --env-file=./.env.dev test/live-e2e/prepare-live-db.ts",
27
+ "test:live": "ONTOS_LIVE_MODE=smoke bun --env-file=./.env.dev test test/live-e2e",
28
+ "test:live:smoke": "ONTOS_LIVE_MODE=smoke bun --env-file=./.env.dev test test/live-e2e",
29
+ "test:live:seeded": "ONTOS_LIVE_MODE=seeded bun --env-file=./.env.dev test test/live-e2e",
30
+ "test:live:with-prepare": "bun run --env-file=./.env.dev test:live:prepare && bun run test:live",
31
+ "lint": "eslint --fix",
32
+ "lint:check": "eslint .",
33
+ "ts-check": "tsc --noEmit"
34
+ },
35
+ "dependencies": {},
36
+ "devDependencies": {
37
+ "@mu-ontos/shared": "workspace:*",
38
+ "commander": "^15.0.0",
39
+ "fflate": "^0.8.3",
40
+ "javascript-obfuscator": "^5.5.0",
41
+ "postgres": "^3.4.9",
42
+ "yaml": "^2.9.0"
43
+ }
44
+ }