forked from karpathy/reinforcejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "@neurosity/reinforcejs",
"version": "1.0.0",
"description": "Reinforcement Learning library",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:iife",
"build:cjs": "./node_modules/.bin/esbuild ./src/index.js --bundle --outfile=./dist/index.cjs.js --platform=node --target=node14",
"build:esm": "./node_modules/.bin/esbuild ./src/index.js --bundle --outfile=./dist/index.esm.js --platform=neutral",
"build:iife": "./node_modules/.bin/esbuild ./src/index.js --bundle --outfile=./dist/index.iife.js --platform=browser",
"clean": "rimraf ./dist"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/neurosity/reinforcejs.git"
},
"keywords": [
"reinforce",
"reinforcejs",
"ml",
"deep-learning"
],
"author": "Andrej Karpathy",
"license": "MIT",
"bugs": {
"url": "https://github.com/neurosity/reinforcejs/issues"
},
"homepage": "https://github.com/neurosity/reinforcejs#readme",
"devDependencies": {
"esbuild": "^0.14.44",
"rimraf": "^3.0.2"
}
}