-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.91 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
{
"name": "genesis-project",
"version": "0.9.4",
"main": "dist/index.js",
"bin": {
"genesis": "./dist/cli/cli.js"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/Simpleboi/Genesis"
},
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.ts",
"build": "tsc",
"start": "ts-node src/core/core.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"watch": "tsc --watch",
"dev": "ts-node-dev src/index.ts",
"clean": "rimraf dist",
"grammar": "npx nearleyc src/grammar/grammar.ne -o src/grammar/grammar.js",
"publish": "npm publish --access public",
"gen": "node dist/cli/cli.js build src/examples/index.gen --out src/examples/index.js",
"genc": "node dist/cli/cli.js build src/examples/index.gen --out src/examples/index.js && node ./src/examples/index.js"
},
"keywords": [
"web-development",
"language",
"front-end"
],
"author": "Nathaniel E. Paz",
"license": "ISC",
"description": "Genesis is a general-purpose programming language designed with a focus on web development. Similar to JavaScript, Genesis is flexible enough to handle a wide range of tasks but is optimized for use within web applications",
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@eslint/js": "^9.29.0",
"@types/jest": "^30.0.0",
"@types/nearley": "^2.11.5",
"@types/node": "^24.0.3",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"jest": "^30.0.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
},
"dependencies": {
"commander": "^14.0.0",
"nearley": "^2.20.1"
},
"exports": {
".": "./dist/index.js",
"./stdlib": "./dist/src/lib/index.js"
}
}