-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.89 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@ftrack/api",
"description": "JavaScript API for ftrack.",
"scripts": {
"lint": "tsc && eslint . && prettier -c .",
"test": "vitest --run test && yarn lint",
"build": "vite build",
"prepack": "yarn build && pinst --disable",
"prepublish": "yarn test",
"postinstall": "husky install",
"postpack": "pinst --enable"
},
"type": "module",
"main": "./dist/ftrack-javascript-api.umd.cjs",
"module": "./dist/ftrack-javascript-api.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/ftrack-javascript-api.es.js",
"require": "./dist/ftrack-javascript-api.umd.cjs"
}
},
"files": [
"dist"
],
"devDependencies": {
"@types/uuid": "^9.0.8",
"cross-fetch": "^4.0.0",
"dayjs": "^1.11.10",
"eslint": "^8.56.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^9.0.10",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"msw": "^2.2.0",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.4.7",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2",
"ws": "^8.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ftrackhq/javascript-api.git"
},
"keywords": [
"ftrack",
"api",
"library"
],
"author": "ftrack",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ftrackhq/javascript-api/issues"
},
"homepage": "http://ftrack.com",
"dependencies": {
"isomorphic-ws": "^5.0.0",
"loglevel": "^1.9.1",
"moment": "^2.30.1",
"uuid": "^9.0.1"
},
"peerDependencies": {
"ws": "^8.13.0"
},
"peerDependenciesMeta": {
"ws": {
"optional": true
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix --max-warnings=0",
"*.{js,ts,css,md,json,jsx,scss,yml}": "prettier --write"
},
"packageManager": "yarn@4.1.1"
}