-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 KB
/
package.json
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
{
"name": "reactgenie-dsl",
"version": "0.0.58",
"description": "A natural language parser based on a large language model",
"scripts": {
"prepare": "peggy lib/dsl/parser.pegjs -o lib/dsl/parser.gen.js && tsc",
"test": "jest",
"doc": "typedoc lib/dsl/index.ts"
},
"keywords": [
"natrual language",
"parser",
"language model"
],
"author": "Jackie Yang <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@reduxjs/toolkit": "^1.9.7",
"@types/jest": "^29.5.8",
"babel-plugin-parameter-decorator": "^1.0.16",
"babel-plugin-reactgenie": "0.3.8",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"openai": "^3.0.0",
"peggy": "^3.0.2",
"redux": "^4.2.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"main": "dist/index.js",
"files": [
"lib/**",
"dist/**"
],
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StanfordHCI/ReactGenieDSL.git"
},
"bugs": {
"url": "https://github.com/StanfordHCI/ReactGenieDSL/issues"
},
"homepage": "https://github.com/StanfordHCI/ReactGenieDSL#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "3.0.3"
}
}