-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 863 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 863 Bytes
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
{
"name": "@nteract/any-vega",
"version": "0.0.0",
"description": "Bundle of all vega and vega-lite packages; select the proper one for each mediatype",
"main": "packages/any-vega/index.js",
"module": "packages/any-vega/index.js",
"types": "packages/any-vega/index.d.js",
"scripts": {
"build": "pnpify tsc -b",
"bundle": "webpack",
"test": "node src/test.js"
},
"author": "nteract & vega",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**"
]
},
"devDependencies": {
"@yarnpkg/pnpify": "^3.0.0-rc.3",
"pnp-webpack-plugin": "^1.6.4",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"@types/node": "^15.0.2"
}
}