-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 918 Bytes
/
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
{
"name": "typegrad",
"version": "0.1.4",
"description": "A simple scalar autograd library for TypeScript",
"author": {
"name": "Jasir Zaeem"
},
"repository": {
"type": "git",
"url": "https://github.com/JasirZaeem/typegrad.git"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn run clean && tsc && tsc-alias"
},
"devDependencies": {
"@types/eslint": "^8.37.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"prettier": "2.8.7",
"tsc-alias": "^1.8.5",
"typescript": "^5.0.4"
}
}