-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "@nomic-ai/atlas",
"version": "0.12.0",
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js"
}
},
"scripts": {
"pretest": "npm run build",
"test": "vitest",
"build-types": "openapi-typescript https://staging-api-atlas.nomic.ai/v1/api-reference/openapi.json -o ./src/type-gen/openapi.ts --empty-objects-unknown | npx prettier ./src/type-gen/openapi.ts --write",
"build": "tsc",
"build:watch": "tsc -w",
"insert-version": "node -e \"const fs = require('fs'); const pkg = require('./package.json'); fs.writeFileSync('./src/version.ts', 'export const version = \\'' + pkg.version + '\\';');\"",
"prepublishOnly": "npm run insert-version && npm run build",
"precommit": "pretty-quick --staged",
"prepare": "husky install .husky"
},
"devDependencies": {
"@auth0/auth0-react": "^2.1.1",
"@types/node": "^18.13.0",
"dotenv": "^16.4.5",
"env-cmd": "^10.1.0",
"esbuild": "^0.17.17",
"esbuild-register": "^3.4.2",
"husky": "^8.0.3",
"jasmine": "^3.99.0",
"jasmine-ts": "^0.4.0",
"openapi-typescript": "^6.7.6",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.13",
"typescript": "^4.9.5",
"vitest": "^2.1.4"
},
"dependencies": {
"apache-arrow": "^13.0.0",
"dotenv": "^16.0.3",
"js-yaml": "^4.1.0"
}
}