[READ-ONLY] Mirror of https://github.com/flo-bit/shapecraft. flo-bit.dev/shapecraft/
0

Configure Feed

Select the types of activity you want to include in your feed.

shapecraft / package.json
1.0 kB 41 lines
1{ 2 "name": "shapecraft", 3 "version": "0.1.0", 4 "type": "module", 5 "main": "./src/index.ts", 6 "exports": { 7 ".": "./src/index.ts", 8 "./noise": "./src/noise/index.ts", 9 "./three": "./src/three/index.ts", 10 "./modifiers": "./src/modifiers/index.ts", 11 "./ops": "./src/ops/index.ts", 12 "./color": "./src/color/index.ts", 13 "./uv": "./src/uv/index.ts", 14 "./texture": "./src/texture/index.ts", 15 "./style": "./src/style/index.ts", 16 "./generators": "./src/generators/index.ts", 17 "./build": "./src/build/index.ts" 18 }, 19 "scripts": { 20 "dev": "pnpm -C webapp dev", 21 "build": "vite build", 22 "test": "vitest run", 23 "typecheck": "tsc --noEmit" 24 }, 25 "peerDependencies": { 26 "three": ">=0.150.0" 27 }, 28 "devDependencies": { 29 "@types/culori": "^4.0.1", 30 "@types/three": "0.184.1", 31 "jsdom": "^29.1.1", 32 "three": "0.184.0", 33 "typescript": "^6.0.3", 34 "vite": "^8.0.16", 35 "vitest": "^4.1.8" 36 }, 37 "dependencies": { 38 "culori": "^4.0.2", 39 "three-bvh-csg": "^0.0.17" 40 } 41}