-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.98 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.98 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@shotstack/shotstack-studio",
"author": "Shotstack <support@shotstack.io>",
"contributors": [
"cpuccino",
"dazzatron",
"kratos2k7"
],
"version": "2.1.5",
"description": "A video editing library for creating and editing videos with Shotstack",
"type": "module",
"main": "dist/shotstack-studio.umd.js",
"module": "dist/shotstack-studio.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/shotstack-studio.es.js",
"require": "./dist/shotstack-studio.umd.js",
"default": "./dist/shotstack-studio.es.js"
},
"./internal": {
"types": "./dist/internal.d.ts",
"import": "./dist/internal.es.js",
"require": "./dist/internal.umd.js",
"default": "./dist/internal.es.js"
}
},
"files": [
"dist/shotstack-studio.umd.js",
"dist/shotstack-studio.es.js",
"dist/internal.umd.js",
"dist/internal.es.js",
"dist/**/*.d.ts"
],
"keywords": [
"shotstack",
"video",
"editing",
"ffmpeg"
],
"license": "PolyForm Shield License 1.0.0",
"engines": {
"node": ">=22 <23"
},
"repository": {
"type": "git",
"url": "https://github.com/shotstack/shotstack-studio-sdk"
},
"scripts": {
"dev": "vite",
"dev:shotstack": "vite --open /shotstack.html",
"start": "npm run build && vite preview",
"build": "npm run build:main && npm run build:internal",
"build:main": "vite build",
"build:internal": "node scripts/build-internal.mjs",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:package": "node test-package.js",
"test:extended": "bash scripts/run-extended-tests.sh",
"typecheck": "tsc --noEmit && tsc --project tsconfig.test.json --noEmit",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore --fix .",
"format": "prettier --ignore-path .gitignore --write .",
"verify:ci": "npm run lint && npm run typecheck && npm run test:coverage && npm run build && npm run test:package",
"release:check": "npm run verify:ci && npm run test:extended && npm pack --dry-run --json",
"prepublishOnly": "npm run release:check",
"generate:fonts": "npx tsx scripts/fetch-google-fonts.ts"
},
"devDependencies": {
"@types/howler": "^2.2.12",
"@types/jest": "^30.0.0",
"@types/node": "^22.9.0",
"@types/opentype.js": "^1.3.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"typescript": "^5.6.2",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"@shotstack/schemas": "1.8.7",
"@shotstack/shotstack-canvas": "^2.0.17",
"howler": "^2.2.4",
"mediabunny": "^1.11.2",
"opentype.js": "^1.3.4",
"pixi-filters": "^6.0.5",
"pixi.js": "^8.15.0",
"zod": "^4.0.0"
}
}