-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.87 KB
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": "raydar",
"version": "0.2.4",
"description": "A perspective powered, user editable ray dashboard via ray serve",
"repository": "git@github.com:Point72/raydar.git",
"author": "Point72, L.P. <OpenSource@point72.com>",
"license": "Apache-2.0",
"private": true,
"type": "module",
"unpkg": "dist/cdn/index.js",
"jsdelivr": "dist/cdn/index.js",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"index.d.ts"
],
"types": "./dist/esm/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build:debug": "node build.mjs --debug",
"build:esbuild": "node build.mjs",
"build": "npm-run-all -s build:*",
"clean": "rm -rf dist playwright-report ../raydar/dashboard/static",
"dev": "npm-run-all -p start watch",
"lint": "prettier --check \"src/**/*.{js,ts,jsx,tsx,css}\" \"*.mjs\" \"*.json\"",
"fix": "prettier --write \"src/**/*.{js,ts,jsx,tsx,css}\" \"*.mjs\" \"*.json\"",
"preinstall": "npx only-allow pnpm",
"prepack": "npm run build",
"test": ":",
"watch:esbuild": "pnpm run build:esbuild --watch",
"watch": "npm-run-all -p watch:*"
},
"dependencies": {
"@perspective-dev/client": "^4.3.0",
"@perspective-dev/server": "^4.3.0",
"@perspective-dev/viewer": "^4.3.0",
"@perspective-dev/viewer-d3fc": "^4.3.0",
"@perspective-dev/viewer-datagrid": "^4.3.0",
"@perspective-dev/workspace": "^4.3.0"
},
"devDependencies": {
<<<<<<< before updating
"cpy": "^13.2.1",
"esbuild": "^0.27.2",
=======
"@playwright/test": "^1.60.0",
"cpy": "^13.2.2",
"esbuild": "^0.28.0",
>>>>>>> after updating
"lightningcss": "^1.29.3",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3"
}
}