-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.39 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "round8",
"license": "GPL-3.0",
"version": "0.0.168",
"description": "Round8 Base-72 Numeral System - Pure Spatial Coordinate Stratimuxian Mathematics with String-Only API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Phuire-Research/Round8.git"
},
"scripts": {
"dev": "npx nodemon",
"dev:demo": "npx nodemon --config nodemon.demo.json",
"start": "npm run build && node dist/index.js",
"build": "npm run build:lib",
"build:all": "npm run build:lib && npm run build:demo",
"build:lib": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts",
"build:demo": "npm run build:demo:js && npm run build:demo:css && npm run copy:html && npm run copy:fonts",
"build:demo:js": "tsup demo/calculator.ts --format iife --global-name Round8Calculator --out-dir dist/demo",
"build:demo:css": "npx tailwindcss -i ./demo/styles/main.css -o ./dist/demo/styles.css",
"copy:html": "cp demo/calculator.html dist/demo/index.html && cp demo/favicon.ico dist/demo/favicon.ico && cp -r demo/js dist/demo/",
"copy:fonts": "mkdir -p dist/demo/fonts/dseg && cp demo/fonts/dseg/* dist/demo/fonts/dseg/",
"serve:demo": "npx http-server dist/demo -p 7888 -c-1",
"deploy": "npm run build:all && gh-pages -d dist/demo",
"lint": "eslint . --ext .ts",
"prettier-format": "run-script-os",
"prettier-format:win32": "prettier --config .prettierrc \"./src/**/*.ts\" --write",
"prettier-format:darwin:linux": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-format:default": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-watch": "run-script-os",
"prettier-watch:win32": "onchange \"src/**/*.ts\" -- prettier --write {{changed}}",
"prettier-watch:darwin:linux": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"prettier-watch:default": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"test": "jest",
"test:dev": "jest --watchAll",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run prettier-format && npm run lint"
}
},
"keywords": [
"Muxified Turing Machine",
"Asynchronous Graph Programming",
"Concept",
"Formatic Concept",
"Round8",
"UnHex"
],
"author": "Micah T. Keller (public@phuire.org)",
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/express": "^4.17.19",
"@types/jest": "^28.1.8",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"autoprefixer": "^10.4.21",
"dseg": "^0.46.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^6.3.0",
"husky": "^8.0.0",
"jest": "^28.1.3",
"marked": "^17.0.0",
"nodemon": "^3.0.1",
"onchange": "^7.1.0",
"postcss": "^8.5.6",
"prettier": "^2.7.1",
"rimraf": "^5.0.0",
"run-script-os": "^1.1.6",
"tailwindcss": "^4.0.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"dependencies": {
"rxjs": "^7.8.1",
"stratimux": "^0.3.293"
}
}