-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.43 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
{
"name": "@creation-wasteland/nanoscript",
"version": "0.0.17",
"description": "A server/client javascript-based interpreter for simple custom application specific scripts.",
"main": "./dist/npm-main.js",
"module": "./dist/npm-main.mjs",
"types": "./dist/npm-main.d.ts",
"files": [
"./dist"
],
"scripts": {
"test": "jest --verbose",
"dev": "tsc & node ./build/main.js",
"dev-client": "tsc -w & node client.js",
"build": "tsup",
"build-node": "tsup-node ./src/npm-main.ts --format esm,cjs --dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kameronbrooks/nanoscript.git"
},
"author": "Kameron Brooks",
"license": "MIT",
"bugs": {
"url": "https://github.com/kameronbrooks/nanoscript/issues"
},
"homepage": "https://github.com/kameronbrooks/nanoscript#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"nanoscript",
"interpreter",
"javascript",
"server",
"client",
"custom",
"application",
"specific",
"scripts",
"language"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"tsup": {
"entry": "src/npm-main.ts",
"dts": true,
"splitting": false,
"sourcemap": true,
"clean": true,
"format": [
"cjs",
"esm"
],
"target": "es2020"
}
}