-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.16 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.16 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
{
"name": "@aevov/apl",
"version": "1.0.0",
"description": "The world's first hardware-native neurosymbolic programming language",
"main": "src/index.js",
"browser": "dist/apl.bundle.js",
"types": "types/index.d.ts",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"test": "jest",
"lint": "eslint src/",
"docs": "jsdoc -c jsdoc.json",
"prepublishOnly": "npm run build"
},
"keywords": [
"apl",
"quantum",
"neural",
"ai",
"neurosymbolic",
"hardware-acceleration",
"programming-language",
"compiler",
"runtime"
],
"repository": {
"type": "git",
"url": "https://github.com/aevov/apl.git"
},
"bugs": {
"url": "https://github.com/aevov/apl/issues"
},
"homepage": "https://apl.aevov.ai",
"files": [
"src/",
"dist/",
"types/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"license": "Apache-2.0",
"devDependencies": {
"webpack": "^5.88.0",
"webpack-cli": "^5.1.0",
"eslint": "^8.45.0",
"jest": "^29.6.0",
"jsdoc": "^4.0.2"
},
"dependencies": {},
"peerDependencies": {}
}