-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.32 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
{
"name": "cpcbasicts",
"version": "0.5.7",
"description": "# CPCBasicTS - Run CPC BASIC in a Browser",
"main": "./dist/cpcbasic-ui-bootstrap.js",
"exports": {
".": {
"require": "./dist/cpcbasic-ui-bootstrap.js"
},
"./core": {
"require": "./dist/cpcbasic-core.js"
},
"./ui": {
"require": "./dist/cpcbasic-ui.js"
},
"./ui/bootstrap": {
"require": "./dist/cpcbasic-ui-bootstrap.js"
},
"./node": {
"require": "./dist/cpcbasic-node.js"
},
"./node/bootstrap": {
"require": "./dist/cpcbasic-node-bootstrap.js"
}
},
"directories": {
"test": "dist/test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.21",
"@types/qunit": "^2.19.14",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"eslint": "^10.5.0",
"gh-pages": "^6.3.0",
"globals": "^16.5.0",
"mkdirp": "^1.0.4",
"qunit": "^2.19.1",
"rollup": "^4.62.0",
"rollup-plugin-esbuild": "^6.2.1",
"typescript": "^5.9.3"
},
"files": [
"src/"
],
"scripts": {
"start": "echo TODO",
"clean": "rm -rf dist/*",
"cleancache": "rm -rf node_modules/.cache/gh-pages/",
"copy": "cp src/*.html src/*.css LICENSE favicon.ico dist/ && mkdirp -p dist/src && cp -r src/*.ts dist/src && mkdirp -p dist/src/test && cp -r src/test/*.ts dist/src/test && cp src/test/*.html dist/test/ && mkdirp -p dist/examples && cp -r examples/* dist/examples && mkdirp -p dist/img && cp img/* dist/img",
"build:separate": "tsc --build",
"build:rollup": "rollup -c",
"build": "npm run build:separate && npm run build:rollup && npm run copy && node updateVersion.mjs",
"testnode": "node dist/cpcbasic-node-bootstrap.js example=test/testpage",
"test": "qunit dist/test-bundle.js",
"testAll": "qunit dist/test-bundle.js testAll=true",
"deploy": "gh-pages -d dist",
"lint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benchmarko/CPCBasicTS.git"
},
"keywords": [
"CPC BASIC, Locomotive BASIC, Amstrad CPC, Schneider CPC, BASIC Compiler"
],
"author": "Marco Vieth",
"license": "MIT",
"bugs": {
"url": "https://github.com/benchmarko/CPCBasicTS/issues"
},
"homepage": "https://github.com/benchmarko/CPCBasicTS#readme"
}