-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.51 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
{
"name": "pixi-box-shadow",
"version": "1.2.1",
"description": "High-performance CSS box-shadow implementation for PixiJS v8 using SDF analytical Gaussian blur",
"type": "module",
"main": "dist/pixi-box-shadow.cjs",
"module": "dist/pixi-box-shadow.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/pixi-box-shadow.mjs",
"require": "./dist/pixi-box-shadow.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite serve examples",
"build": "vite build && tsc --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"test:cache": "playwright test tests/cache-as-texture.spec.ts",
"semantic-release": "semantic-release"
},
"prepublishOnly": "npm run build",
"keywords": [
"pixi",
"pixijs",
"box-shadow",
"shadow",
"filter",
"webgl",
"webgpu",
"sdf"
],
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/necatikcl/pixi-box-shadow.git"
},
"peerDependencies": {
"pixi.js": ">=8.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"pixi.js": "^8.17.1",
"semantic-release": "^25.0.3",
"typescript": "^5.5.0",
"vite": "^6.0.0"
},
"dependencies": {
"motion": "^12.38.0",
"playwright": "^1.59.1"
}
}