clip-pal 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +226 -0
- package/dist/index.cjs +1162 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +364 -0
- package/dist/index.d.ts +364 -0
- package/dist/index.js +1132 -0
- package/dist/index.js.map +1 -0
- package/dist/styles.css +929 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "clip-pal",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A one-legged paperclip who walks along as you scroll, keeps you company and acts out what he says. The ClipSpace mascot, as a React component.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"mascot",
|
|
8
|
+
"paperclip",
|
|
9
|
+
"animation",
|
|
10
|
+
"scroll",
|
|
11
|
+
"companion",
|
|
12
|
+
"clipspace",
|
|
13
|
+
"svg"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/clipspace/clip-pal#readme",
|
|
16
|
+
"bugs": "https://github.com/clipspace/clip-pal/issues",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/clipspace/clip-pal.git"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"author": "Jáchym Šolta <jachym@djt-group.com> (https://jachym.djt-group.com)",
|
|
23
|
+
"type": "module",
|
|
24
|
+
"sideEffects": [
|
|
25
|
+
"*.css"
|
|
26
|
+
],
|
|
27
|
+
"main": "./dist/index.cjs",
|
|
28
|
+
"module": "./dist/index.js",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/index.js",
|
|
34
|
+
"require": "./dist/index.cjs"
|
|
35
|
+
},
|
|
36
|
+
"./styles.css": "./dist/styles.css",
|
|
37
|
+
"./package.json": "./package.json"
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist",
|
|
41
|
+
"README.md",
|
|
42
|
+
"LICENSE"
|
|
43
|
+
],
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsup && cp src/styles.css dist/styles.css",
|
|
46
|
+
"typecheck": "tsc --noEmit",
|
|
47
|
+
"demo": "vite",
|
|
48
|
+
"prepublishOnly": "npm run typecheck && npm run build",
|
|
49
|
+
"prepare": "npm run build"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"react": ">=18",
|
|
53
|
+
"react-dom": ">=18"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@types/react": "^19",
|
|
57
|
+
"@types/react-dom": "^19",
|
|
58
|
+
"@vitejs/plugin-react": "^6.1.1",
|
|
59
|
+
"react": "^19.2.4",
|
|
60
|
+
"react-dom": "^19.2.4",
|
|
61
|
+
"tsup": "^8.5.1",
|
|
62
|
+
"typescript": "^5",
|
|
63
|
+
"vite": "^8.3.0"
|
|
64
|
+
},
|
|
65
|
+
"allowScripts": {
|
|
66
|
+
"esbuild@0.27.7": true
|
|
67
|
+
}
|
|
68
|
+
}
|