-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.84 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.84 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
{
"name": "python-template-js",
"version": "0.1.0",
"description": "A JavaScript-Python project template",
"repository": "git@github.com:python-project-templates/python-template-js.git",
"author": "Python Project Template Authors <3105306+timkpaine@users.noreply.github.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": "node build.mjs",
"clean": "rm -rf dist playwright-report ../python_template_js/extension",
"dev": "npm-run-all -p start watch",
"lint": "prettier --check \"src/**/*.{js,ts,jsx,tsx,less,css}\" \"tests/**/*.{js,ts,jsx,tsx}\" \"*.mjs\" \"*.json\"",
"fix": "prettier --write \"src/**/*.{js,ts,jsx,tsx,less,css}\" \"tests/**/*.{js,ts,jsx,tsx}\" \"*.mjs\" \"*.json\"",
"preinstall": "npx only-allow pnpm",
"prepack": "npm run build",
"start": "http-server -p 3000 -o examples/",
"start:tests": "http-server -p 3000 ",
"test": "TZ=UTC playwright test",
"watch": "nodemon --watch src -e ts,less,html --exec \"pnpm build:debug\""
},
"dependencies": {},
"devDependencies": {
"@finos/perspective-esbuild-plugin": "^3.2.1",
"@playwright/test": "^1.57.0",
"@prospective.co/procss": "^0.1.18",
"cpy": "^13.2.1",
"esbuild": "^0.27.2",
"esbuild-plugin-less": "^1.3.36",
"http-server": "^14.1.1",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}