forked from joeattardi/picmo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.72 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
{
"name": "@picmo/popup-picker",
"version": "5.7.0",
"description": "Popup emoji picker for PicMo",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"precommit": "npm-run-all lint check",
"build": "npm run check && vite build && npm run build:types && npm run build:css",
"build:css": "postcss src/styles/index.css -o dist/index.css --config ../../postcss.config.js",
"build:types": "tsc --declaration --emitDeclarationOnly",
"check": "tsc --noEmit",
"clean": "rimraf dist",
"lint": "eslint src",
"start": "vite"
},
"keywords": [
"popup",
"emoji",
"emoji picker",
"javascript"
],
"author": "Joe Attardi <jattardi@gmail.com> (https://joeattardi.dev)",
"repository": "joeattardi/picmo",
"homepage": "https://picmojs.com",
"bugs": "https://github.com/joeattardi/picmo/issues",
"funding": "https://github.com/sponsors/joeattardi",
"license": "MIT",
"dependencies": {
"@floating-ui/dom": "^1.0.0"
},
"peerDependencies": {
"picmo": "^5.7.0"
},
"devDependencies": {
"@testing-library/dom": "^8.17.1",
"@testing-library/user-event": "^14.4.3",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"cssnano": "^5.1.13",
"eslint": "^8.22.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-raw-loader": "^1.0.1",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-import": "^14.1.0",
"postcss-mixins": "^9.0.3",
"postcss-nesting": "^10.1.10",
"prettier": "^2.7.1",
"style-inject": "^0.3.0",
"ts-jest": "^28.0.8",
"vite": "^3.0.7"
}
}