UNPKG

2.79 kBJSONView Raw
1{
2 "name": "@blueprintjs/datetime",
3 "version": "5.3.5",
4 "description": "Components for interacting with dates and times",
5 "main": "lib/cjs/index.js",
6 "module": "lib/esm/index.js",
7 "esnext": "lib/esnext/index.js",
8 "typings": "lib/esm/index.d.ts",
9 "style": "lib/css/blueprint-datetime.css",
10 "unpkg": "dist/datetime.bundle.js",
11 "files": [
12 "dist",
13 "lib",
14 "src"
15 ],
16 "sideEffects": [
17 "**/*.css"
18 ],
19 "scripts": {
20 "clean": "rm -rf dist/* || rm -rf lib/* || true",
21 "compile": "run-p \"compile:*\"",
22 "compile:esm": "tsc -p ./src",
23 "compile:cjs": "tsc -p ./src -m commonjs --verbatimModuleSyntax false --outDir lib/cjs",
24 "compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext",
25 "compile:css": "sass-compile ./src",
26 "dev": "run-p \"compile:esm --watch\" \"compile:css --watch\"",
27 "dist": "run-s \"dist:*\"",
28 "dist:bundle": "NODE_ENV=production webpack",
29 "dist:css": "css-dist lib/css",
30 "dist:verify": "assert-package-layout",
31 "lint": "run-p lint:scss lint:es",
32 "lint:scss": "sass-lint",
33 "lint:es": "es-lint",
34 "lint-fix": "es-lint --fix && sass-lint --fix",
35 "test": "run-s test:typeCheck test:iso test:karma",
36 "test:typeCheck": "tsc -p ./test",
37 "test:iso": "mocha test/isotest.mjs",
38 "test:karma": "karma start",
39 "test:karma:debug": "karma start --single-run=false --reporters=helpful --debug",
40 "verify": "npm-run-all compile -p dist test lint"
41 },
42 "dependencies": {
43 "@blueprintjs/core": "^5.10.3",
44 "@blueprintjs/icons": "^5.9.0",
45 "@blueprintjs/select": "^5.1.5",
46 "classnames": "^2.3.1",
47 "date-fns": "^2.28.0",
48 "date-fns-tz": "^2.0.0",
49 "lodash": "^4.17.21",
50 "react-day-picker": "7.4.9",
51 "tslib": "~2.6.2"
52 },
53 "peerDependencies": {
54 "@types/react": "^16.14.41 || 17",
55 "react": "^16.8 || 17",
56 "react-dom": "^16.8 || 17"
57 },
58 "peerDependenciesMeta": {
59 "@types/react": {
60 "optional": true
61 }
62 },
63 "devDependencies": {
64 "@blueprintjs/colors": "^5.1.1",
65 "@blueprintjs/karma-build-scripts": "^5.2.7",
66 "@blueprintjs/node-build-scripts": "^9.2.1",
67 "@blueprintjs/test-commons": "^3.0.2",
68 "@types/lodash": "~4.14.202",
69 "enzyme": "^3.11.0",
70 "karma": "^6.4.2",
71 "mocha": "^10.2.0",
72 "npm-run-all": "^4.1.5",
73 "react": "^16.14.0",
74 "react-dom": "^16.14.0",
75 "react-test-renderer": "^16.14.0",
76 "typescript": "~5.3.3",
77 "webpack-cli": "^5.1.4"
78 },
79 "repository": {
80 "type": "git",
81 "url": "git@github.com:palantir/blueprint.git",
82 "directory": "packages/datetime"
83 },
84 "keywords": [
85 "palantir",
86 "blueprint",
87 "theme",
88 "react",
89 "day",
90 "picker",
91 "date",
92 "time"
93 ],
94 "author": "Palantir Technologies",
95 "license": "Apache-2.0"
96}
\No newline at end of file