-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "@agility/web-studio-sdk",
"version": "1.0.22",
"description": "Standard Development Kit used to enable Web Studio features in Agility CMS",
"repository": {
"type": "git",
"url": "git+https://github.com/agility/web-studio-sdk.git"
},
"bugs": {
"url": "https://github.com/agility/web-studio-sdk.git/issues"
},
"homepage": "https://github.com/agility/web-studio-sdk.git#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"build": "NODE_ENV=production rm -rf dist && node build.js",
"dev": "NODE_ENV=development npx http-server ./dist -c-1 -p 8080",
"esbuildServe": "NODE_ENV=development esbuild src/index.ts --bundle --outdir=dist --servedir=dist --watch",
"pre-publish": "rm -rf dist && yarn build"
},
"keywords": [
"typescript",
"agility",
"cms",
"headlesscms",
"web-studio-sdk"
],
"author": "Agility CMS",
"contributors": [
"Dakotah Godfrey",
"Joel Varty",
"Kevin Tran",
"Landy Simpson"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.10",
"dotenv": "^16.4.5",
"esbuild": "0.23.0",
"esbuild-sass-plugin": "^3.3.1",
"npm-dts": "^1.3.12",
"typescript": "^5.5.3"
}
}